:root {
    --primary-color: #00BFB3;
    --secondary-color: #5856D6;
    --text-color: #2c3e50;
    --background-color: #ffffff;
    --section-padding: 4rem 2rem;
    --highlight-color: #00BFB3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: scroll;
    will-change: scroll-position;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

header {
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu a:hover, .menu a.active {
    color: var(--primary-color);
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.search-button img {
    width: 20px;
    height: 20px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    z-index: 1000;
    text-align: center;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a,
.mobile-menu .menu-item > a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.1rem;
    text-align: center;
    transition: color 0.3s ease;
    width: 100%;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #00BFB3;
    background: transparent;
    transform: none;
}

.mobile-menu .menu-item {
    display: block;
    width: 100%;
    text-align: center;
}

.mobile-menu .menu-item > a {
    justify-content: center;
}

.mobile-menu .dropdown {
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu .dropdown a {
    padding: 10px 0;
    color: #666;
    font-size: 1rem;
    display: block;
    width: 100%;
    text-align: center;
}

.mobile-menu .dropdown a:hover {
    color: #00BFB3;
    background: transparent;
    transform: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu .menu-item,
    .mobile-menu .menu-item > a {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .mobile-menu .dropdown a {
        text-align: center;
        padding: 10px 0;
        margin: 0;
        width: 100%;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active,
    .mobile-menu .dropdown a:hover {
        background: transparent;
        transform: none;
        text-align: center;
    }
}

main {
    margin-top: 0;
}

.section {
    padding: var(--section-padding);
    max-width: 1200px;
    margin: 0 auto;
}

.two-column-sections {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.half-width {
    flex: 1;
    min-width: 0;
}

.half-width h2 {
    color: #00BFB3;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.half-width h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.content {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.content p {
    margin-bottom: 20px;
}

.content em {
    font-style: italic;
}

.cta-text {
    color: #333;
    font-weight: 500;
    font-size: 18px;
}

.banner3-container {
    text-align: center;
    padding: 20px 20px 60px;
    background-color: #fff;
}

.banner3-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.banner {
    display: block;
    width: 100%;
    margin: 0;
    line-height: 0;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner {
        margin-top: -1px;
        height: 500px;
    }

    .banner img {
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }
}

.intro-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}

.intro-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.get-in-touch {
    display: inline-block;
    background-color: #00BFB3;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

.get-in-touch:hover {
    background-color: #009B91;
    color: white;
    text-decoration: none;
}

h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 2rem auto;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.devices-showcase {
    background-color: #00BFB3;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.devices-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.awards-section {
    padding: 40px 0;
    background-color: white;
    border-top: 1px solid #eee;
}

.awards-container {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

.awards-banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .awards-banner {
        max-width: 100%;
    }
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 2rem;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .social-icons {
        display: none;
    }
}

footer {
    background-color: #00BFB3;
    padding: 2rem;
    color: white;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.company-info {
    margin-bottom: 1.5rem;
}

.company-info p {
    margin: 0.3rem 0;
    color: white;
}

.company-info a {
    color: white;
    text-decoration: none;
}

.social-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: white;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem;
        margin-top: 3rem;
    }

    .social-links {
        margin: 1.5rem 0;
        gap: 1rem;
    }

    .social-icon {
        font-size: 1.3rem;
    }
}

.proven-results {
    padding: 40px 20px;
    background-color: #fff;
}

.proven-results-content {
    max-width: 1000px;
    margin: 0 auto;
}

.proven-results h2 {
    color: #00BFB3;
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.results-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.results-image {
    flex: 0 0 250px;
}

.star-image {
    width: 100%;
    height: auto;
}

.results-text {
    flex: 1;
}

.main-result {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    color: #00BFB3;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.testimonials-slider {
    padding: 40px 20px;
    background-color: white;
}

.testimonials-slider h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #00BFB3;
    font-size: 32px;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.testimonial-content {
    background: white;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    border: none;
    box-shadow: none;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
    font-style: normal;
}

.testimonial-author h3 {
    color: #333;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.testimonial-author p {
    color: #666;
    margin: 5px 0 0;
    font-size: 14px;
}

.slider-arrow {
    display: none;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 15px 0;
    margin: 20px 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 40s linear infinite;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.marquee-items {
    display: flex;
    white-space: nowrap;
}

.marquee-item {
    color: var(--text-color);
    font-weight: 600;
    padding: 0 25px;
    font-size: 1.3rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-container:hover .marquee-content {
    animation-play-state: running;
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-content h1 {
    color: #00BFB3;
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.about-text-with-image {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

.about-text-with-image.reverse {
    flex-direction: row-reverse;
}

.about-equality,
.about-empathy,
.about-discovery {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .about-text-with-image {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text-with-image.reverse,
    .about-equality .about-text-with-image,
    .about-empathy .about-text-with-image,
    .about-discovery .about-text-with-image {
        flex-direction: column-reverse;
    }

    .about-image {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .about-equality,
    .about-empathy,
    .about-discovery {
        margin-top: 60px;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .social-links a, .legal-links a {
        display: block;
        margin: 1rem 0;
    }

    .menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }

    .social-links {
        gap: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }

    .banner {
        margin-top: -1px;
    }

    .intro-content h1 {
        font-size: 24px;
    }

    .intro-content p {
        font-size: 15px;
    }

    .intro-section {
        padding: 40px 15px;
    }

    .two-column-sections {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .half-width {
        width: 100%;
    }

    .half-width h2 {
        font-size: 22px;
    }

    .half-width h3 {
        font-size: 18px;
    }

    .content {
        font-size: 15px;
    }

    .cta-text {
        font-size: 16px;
    }

    .banner3-container {
        padding: 30px 15px 40px;
    }

    .banner3-image {
        max-width: 100%;
    }

    .proven-results {
        padding: 30px 15px;
    }

    .results-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .results-image {
        flex: 0 0 150px;
        width: 150px;
    }

    .proven-results h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .main-result {
        text-align: center;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-text-with-image {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        position: static;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
    }
}

.contact-page {
    padding: 40px 20px;
    background-color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: white;
}

.contact-text {
    flex: 1;
}

.contact-text h1 {
    color: #00BFB3;
    font-size: 2.4rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-info i {
    color: #00BFB3;
    font-size: 1.4rem;
}

.contact-image {
    flex: 0 0 500px;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .contact-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .contact-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-info {
        margin-top: 30px;
        padding-top: 20px;
    }

    .contact-info p {
        font-size: 1.1rem;
        justify-content: center;
    }
}

.blog-page {
    padding: 40px 20px;
    background-color: white;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h1 {
    color: #00BFB3;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-header p {
    font-size: 1.2rem;
    color: #666;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
    background: white;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog-meta .date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-meta .category {
    background: #00BFB3;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h2 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #00BFB3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #008C82;
}

.read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 15px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 25px 20px;
    }

    .blog-content h2 {
        font-size: 1.3rem;
    }

    .blog-meta {
        margin-bottom: 15px;
    }
}

.blog-post {
    padding: 40px 20px;
    background-color: white;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #666;
}

.post-header h1 {
    color: #00BFB3;
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.post-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-body h2 {
    color: #00BFB3;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.post-body li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.post-body li:before {
    content: "•";
    color: #00BFB3;
    font-size: 1.2em;
    position: absolute;
    left: 0;
}

.conclusion {
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #00BFB3;
}

.post-navigation {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00BFB3;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.back-to-blog:hover {
    gap: 15px;
}

@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .post-image {
        height: 300px;
        margin-bottom: 30px;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-body h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }

    .conclusion {
        margin-top: 30px;
        padding: 20px;
    }

    .post-navigation {
        margin-top: 40px;
    }
}

.founder-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.profile-header {
    text-align: center;
    margin-bottom: 60px;
}

.profile-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.profile-header .subtitle {
    font-size: 1.2rem;
    color: #00BFB3;
    font-weight: 500;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.profile-image {
    position: sticky;
    top: 100px;
}

.profile-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-text {
    color: #444;
}

.profile-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.profile-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #00BFB3;
}

.profile-story {
    margin-bottom: 40px;
}

.profile-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vision-section, .achievements-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.vision-section h3, .achievements-section h3 {
    color: #00BFB3;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.vision-section ul, .achievements-section ul {
    list-style: none;
    padding: 0;
}

.vision-section li, .achievements-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.vision-section li::before, .achievements-section li::before {
    content: '•';
    color: #00BFB3;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 992px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-image {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .founder-profile {
        padding: 20px;
    }

    .profile-header h1 {
        font-size: 2.5rem;
    }

    .profile-header .subtitle {
        font-size: 1.1rem;
    }

    .profile-text h2 {
        font-size: 1.8rem;
    }

    .vision-section, .achievements-section {
        padding: 20px;
    }
}

.founder-link {
    color: #00BFB3;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.founder-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00BFB3;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.founder-link:hover {
    color: #008C82;
}

.founder-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Menu Styles */
.menu-item {
    position: relative;
    display: inline-block;
}

.menu-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-item > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.menu-item:hover > a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 200px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.menu-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown a {
    display: block;
    padding: 10px 25px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.dropdown a:hover {
    background: #f8f9fa;
    color: #00BFB3;
}

@media (max-width: 768px) {
    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        opacity: 1;
        visibility: visible;
        margin-left: 20px;
    }

    .dropdown::before {
        display: none;
    }

    .dropdown a {
        padding: 10px 0;
        color: white;
        font-size: 0.9rem;
    }

    .dropdown a:hover {
        background: transparent;
    }

    .menu-item > a i {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .menu {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}
