@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #ed7d31;
    --secondary: #000000;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}


body {
    font-family: Rockwell, serif;
    line-height: 1.6;
    color: var(--secondary);
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

h1,
h2,
h3,
.btn {
    font-family: 'American Captain', sans-serif;
    letter-spacing: 1px;
}

p {
    font-family: "Inter", sans-serif;
}

.navigation {
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    font-family: "Inter", sans-serif;
}

.logo {
    width: 100px;
    height: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 16px;
}

.nav-list a {
    color: black;
    text-decoration: none;
}

.contact-btn {
    background-color: black;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
}

/* Mobile Menu Toggle - Hidden by default */
.mobile-menu-toggle {
    display: none;
}

.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content .texts {
    color: var(--primary);
    margin-bottom: 0;
    position: relative;
    padding: 0 40px;
    z-index: 1;
    display: inline-block;
}

.hero-content .texts:after {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    height: 100%;
    width: calc(100% + 10px);
    background-color: black;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    z-index: -1;
}

.texts h1 {
    font-size: 75px;
    margin: 0;
}

.texts p {
    margin-top: -20px;
    color: white;
}

.hero-content .description {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 600px;
    margin-top: 0;
}

/* Who are we section */
.who-are-we {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.who-are-we .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* SVG Decorative Elements */
.svg-decoration {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.svg-decoration.top-left {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.svg-decoration.top-right {
    top: 40px;
    right: 30px;
    animation-delay: 2s;
}

.svg-decoration.bottom-left {
    bottom: 30px;
    left: 40px;
    animation-delay: 4s;
}

.svg-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(-8px) scale(1.05) rotate(2deg); }
}

/* Who We Content Layout */
.who-we-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.who-we-text {
    text-align: left;
}

.who-we-text h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.who-we-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.who-we-text .intro {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.4;
}

.who-we-text .description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    max-width: 450px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    z-index: -1;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.contact-details {
    text-align: left;
    max-width: 350px;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--secondary);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.contact-details a:hover {
    color: var(--secondary);
    background-color: var(--primary);
    color: var(--white);
}

/* Visual Elements */
.who-we-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle-element {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(237, 125, 49, 0.3) 100%);
    top: 20px;
    right: 20px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

.square-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(0, 0, 0, 0.3) 100%);
    transform: rotate(45deg);
    bottom: 40px;
    left: 30px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.triangle-element {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--primary);
    opacity: 0.6;
    top: 60px;
    left: 50px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* Mission section */
.mission {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.mission .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.mission h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.mission .mission-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Practices section */
.practices {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.practices .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.practices h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.practices h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.practices-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.practices-showcase {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.practice-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    align-items: stretch;
}

.practice-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.practice-number {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(237, 125, 49, 0.8) 100%);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    font-family: 'American Captain', sans-serif;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    position: relative;
}

.practice-number::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--primary);
}

.practice-content {
    padding: 30px 35px;
    flex: 1;
}

.practice-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.practice-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
    margin: 0;
}

.practice-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(237, 125, 49, 0.3) 100%);
    border-radius: 0 20px 0 60px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.practice-card:hover .practice-accent {
    opacity: 0.3;
}

/* History section */
.history {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.history .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.history-text h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
}

.history-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.history-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 25px;
}

.history-text p:last-child {
    margin-bottom: 0;
}

.history-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.milestone-cards {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 600px;
}

.milestone-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(237, 125, 49, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 125, 49, 0.1), transparent);
    transition: left 0.5s ease;
}

.milestone-card:hover::before {
    left: 100%;
}

.milestone-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.milestone-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'American Captain', sans-serif;
    letter-spacing: 2px;
}

.milestone-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.milestone-icon svg {
    transition: transform 0.3s ease;
}

.milestone-card:hover .milestone-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.milestone-card h4 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.milestone-card p {
    font-size: 15px;
    color: var(--secondary);
    margin: 0;
    line-height: 1.6;
}

.milestone-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.milestone-arrow svg {
    transition: transform 0.3s ease;
}

.milestone-arrow:hover svg {
    transform: scale(1.2);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Team section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.team h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.team-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -50px;
    transition: transform 0.4s ease;
}


#move-bottom {
    object-position: top;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 125, 49, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.linkedin-link {
    background: var(--white);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.linkedin-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.member-info {
    padding: 15px 15px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.mobile-linkedin-btn {
    display: none;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Inter", sans-serif;
}

.mobile-linkedin-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mission Section */
.mission-section .mission-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(237, 125, 49, 0.1);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 125, 49, 0.1), transparent);
    transition: left 0.5s ease;
}

.pillar:hover::before {
    left: 100%;
}

.pillar:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}



.pillar h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.pillar h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.pillar p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--secondary);
    margin: 0;
    text-align: center;
}

/* Call to Action */
.call-to-action {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .hero-content .texts h1 {
        font-size: 48px;
    }
    
    .hero-content .texts p {
        font-size: 20px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .who-we-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .who-we-text {
        text-align: center;
    }
    
    .who-we-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .who-we-visual {
        height: 300px;
        display: none;
    }
    
    .visual-element {
        width: 250px;
        height: 250px;
    }
    
    .who-are-we h2,
    .mission h2,
    .practices h2,
    .history-text h2,
    .team h2,
    .relationships-text h2 {
        font-size: 36px;
    }
    
    .who-we-text .intro {
        font-size: 20px;
    }
    
    .mission .mission-intro,
    .practices-intro,
    .team-intro,
    .relationships-intro {
        font-size: 18px;
    }
    
    .mission-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .practices-showcase {
        max-width: 800px;
        gap: 20px;
    }
    
    .practice-number {
        font-size: 28px;
        padding: 25px 20px;
        min-width: 80px;
    }
    
    .practice-content {
        padding: 25px 30px;
    }
    
    .practice-content h3 {
        font-size: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .member-photo {
        height: 250px;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .history-text {
        text-align: center;
    }
    
    .history-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    
    .milestone-cards {
        gap: 30px;
        max-width: 500px;
    }
    
    .milestone-card {
        padding: 30px 25px;
    }
    
    .milestone-year {
        font-size: 28px;
    }
    
    .milestone-card h4 {
        font-size: 20px;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content .texts {
        padding: 0 20px;
    }
    
    .navigation {
        padding: 15px 20px;
    }
    
    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list a {
        font-size: 24px;
        font-weight: 600;
    }
    
    .contact-btn {
        margin-left: 0;
        margin-top: 20px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--secondary);
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--secondary);
        margin: 5px 0;
        transition: 0.3s;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .who-are-we,
    .mission,
    .practices,
    .history,
    .team,
    .relationships {
        padding: 60px 0;
    }
    
    .svg-decoration {
        display: none;
    }
    
    .who-we-visual {
        display: none;
    }
    
    .who-we-text h2,
    .mission h2,
    .practices h2,
    .history-text h2,
    .team h2,
    .relationships-text h2 {
        font-size: 30px;
    }
    
    .who-we-text .intro {
        font-size: 18px;
    }
    
    .relationships-intro {
        font-size: 18px;
    }
    
    .relationships-message p {
        font-size: 16px;
    }
    
    .join-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .contact-info {
        padding: 25px;
        margin: 25px 0;
    }
    
    .who-we-visual {
        height: 250px;
    }
    
    .visual-element {
        width: 200px;
        height: 200px;
    }
    
    .circle-element {
        width: 80px;
        height: 80px;
    }
    
    .square-element {
        width: 60px;
        height: 60px;
    }
    
    .triangle-element {
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-bottom: 60px solid var(--primary);
    }
    
    .mission-pillars {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .practices-showcase {
        max-width: 100%;
        gap: 15px;
    }
    
    .practice-card {
        flex-direction: column;
    }
    
    .practice-number {
        font-size: 24px;
        padding: 20px;
        min-width: auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .practice-number::after {
        display: none;
    }
    
    .practice-content {
        padding: 20px 25px;
    }
    
    .practice-content h3 {
        font-size: 18px;
    }
    
    .practice-content p {
        font-size: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .member-photo {
        height: 200px;
    }
    
    .member-info {
        padding: 12px 10px;
    }
    
    .member-info h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .mobile-linkedin-btn {
        display: inline-block;
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .history-content {
        gap: 40px;
    }
    
    .history-text p {
        font-size: 16px;
    }
    
    .milestone-cards {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }
    
    .milestone-card {
        padding: 25px 20px;
    }
    
    .milestone-year {
        font-size: 24px;
    }
    
    .milestone-card h4 {
        font-size: 18px;
    }
    
    .milestone-card p {
        font-size: 14px;
    }
    
    .milestone-arrow {
        transform: rotate(90deg);
    }
    
    .pillar {
        padding: 20px;
    }
    
    .pillar h3 {
        font-size: 18px;
    }
    
    .call-to-action {
        font-size: 16px;
        padding: 15px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 45vh;
        min-height: 300px;
    }
    
    .hero-content .texts {
        padding: 0 15px;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-content .texts h1 {
        font-size: 32px;
        line-height: 2.2;
    }
    
    .hero-content .texts p {
        font-size: 16px;
    }
    
    .who-are-we,
    .mission,
    .practices,
    .history,
    .team,
    .relationships {
        padding: 40px 0;
    }
    
    .who-we-text h2,
    .mission h2,
    .practices h2,
    .history-text h2,
    .team h2,
    .relationships-text h2 {
        font-size: 26px;
    }
    
    .who-we-text .intro {
        font-size: 16px;
    }
    
    .mission .mission-intro,
    .practices-intro,
    .team-intro,
    .relationships-intro {
        font-size: 16px;
    }
    
    .contact-info {
        padding: 20px;
        margin: 20px 0;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .who-we-visual {
        height: 200px;
    }
    
    .visual-element {
        width: 150px;
        height: 150px;
    }
    
    .circle-element {
        width: 60px;
        height: 60px;
    }
    
    .square-element {
        width: 45px;
        height: 45px;
    }
    
    .triangle-element {
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 45px solid var(--primary);
    }
    
    .pillar {
        padding: 15px;
    }
    
    .pillar h3 {
        font-size: 16px;
    }
    
    .pillar p {
        font-size: 14px;
    }
    
    .practice-card {
        margin-bottom: 15px;
    }
    
    .practice-number {
        font-size: 20px;
        padding: 15px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .practice-content {
        padding: 15px 20px;
    }
    
    .practice-content h3 {
        font-size: 16px;
    }
    
    .practice-content p {
        font-size: 14px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        justify-items: center;
    }
    
    .member-photo {
        height: 320px;
        width: 320px;
        margin: 0 auto;
        border-radius: 15px;
    }
    
    .member-photo img {
        object-position: center -30px;
        border-radius: 15px;
    }
    
    .member-info {
        padding: 10px 8px;
    }
    
    .member-info h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .mobile-linkedin-btn {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .history-text p {
        font-size: 14px;
    }
    
    
    .milestone-card {
        padding: 20px 15px;
    }
    
    .milestone-year {
        font-size: 20px;
    }
    
    .milestone-card h4 {
        font-size: 16px;
    }
    
    .milestone-card p {
        font-size: 13px;
    }
    
    .call-to-action {
        font-size: 14px;
        padding: 12px;
    }
    
    .relationships-message p {
        font-size: 14px;
    }
    
    .join-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 0 15px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-section p {
        font-size: 15px;
    }
    
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-page h1 {
        font-size: 36px;
    }
    
    .contact-intro {
        font-size: 18px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-content .texts {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-content .texts h1 {
        font-size: 28px;
    }
    
    .hero-content .texts p {
        font-size: 14px;
    }
    
    .who-we-text h2,
    .mission h2,
    .practices h2,
    .history-text h2,
    .team h2,
    .relationships-text h2 {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        justify-items: center;
    }
    
    .member-photo {
        height: 200px;
        width: 200px;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .member-photo img {
        object-position: center -20px;
        border-radius: 12px;
    }
    
    .practice-card {
        margin-bottom: 12px;
    }
    
    .pillar {
        padding: 12px;
    }
    
    .footer {
        padding: 30px 0 10px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-page h1 {
        font-size: 30px;
    }
    
    .contact-intro {
        font-size: 16px;
    }
    
    .contact-details-grid {
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-card h3 {
        font-size: 18px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .contact-form-section {
        margin-top: 60px;
    }
    
    .contact-form-section h3 {
        font-size: 24px;
    }
    
    .contact-form-section p {
        font-size: 16px;
    }
    
    .typeform-container {
        padding: 15px;
    }
    
    .language-switch {
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .lang-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .error-page {
        padding: 60px 0;
    }
    
    .error-number {
        font-size: 80px;
    }
    
    .error-page h1 {
        font-size: 28px;
    }
    
    .error-message {
        font-size: 18px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-btn {
        width: 200px;
        text-align: center;
    }
}

/* Relationships Section */
.relationships {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.relationships .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.relationships-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
}

.relationships-text h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.relationships-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.relationships-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 800px;
}

.relationships-description {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 40px;
}

.relationships-poster {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.relationships-poster:hover {
    transform: translateY(-5px);
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
}

.relationships-message {
    max-width: 700px;
    margin: 0 auto;
}

.relationships-message p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 25px;
}

.join-button-container {
    margin-top: 40px;
}

.join-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(237, 125, 49, 0.3);
    font-family: "Inter", sans-serif;
}

.join-button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--white);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-section strong {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Contact Page */
.contact-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.contact-page h1 {
    font-size: 48px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.contact-page h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.contact-intro {
    font-size: 20px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-card p {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary);
}

.contact-card strong {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    margin-top: 60px;
    margin-bottom: 80px;
    text-align: center;
}

.contact-form-section h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.contact-form-section p {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.language-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.lang-btn {
    background: var(--light-gray);
    color: var(--secondary);
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(237, 125, 49, 0.3);
}

.typeform-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.typeform-embed {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.typeform-embed.active {
    display: block;
    opacity: 1;
}

/* 404 Error Page */
.error-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.error-number {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Inter", sans-serif;
}

.error-page h1 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Inter", sans-serif;
}

.error-message {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.error-description {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.error-btn.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(237, 125, 49, 0.3);
}

.error-btn.primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.error-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.error-btn.secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.error-help {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.error-help h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Inter", sans-serif;
}

.error-help p {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}

.error-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-links li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--secondary);
    font-family: "Inter", sans-serif;
}

.error-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
}

.error-links a:hover {
    color: var(--secondary);
}