:root {
    --auburn_blue: #0C2340;
    --auburn_orange: #cc4e0b;
    --auburn_second_blue: #006c9a;
    --auburn_second_orange: #E87722;
    --background: #ffffff;
    --black: #333;
    --gray: #e7e9ec;
    --phone_red: #ff0000;
    --auburn-orange: #dd550c;
    --auburn-blue: #03244d;
    --dark-gray: #333;
    --light-gray: #e1e1e1;
    --white: #ffffff;
    --gold-accent: #c4a747;

}


body {
    background-color: var(--background);
    margin: 0;
    font-family: sans-serif;
}


.main-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--background);
    overflow: hidden;
}


.team-header-container {
    width: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
    padding: 1rem 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.team-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    position: relative;
}

.team-title-section {
    flex: 70%;
    position: relative;
    padding-left: 2rem;
}

.title-decoration {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.decoration-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
    transparent 0%,
    var(--auburn-orange) 30%,
    var(--auburn-orange) 70%,
    transparent 100%);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--auburn-orange);
    border-radius: 50%;
    margin-top: 1rem;
    box-shadow: 0 0 0 4px rgba(221, 85, 12, 0.2);
}

.team-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.5em, 1.5vw, 4em);
    color: var(--auburn-blue);
    margin: 0;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    letter-spacing: -0.5px;
}

.title-word {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
}

.ausme-au {
    color: var(--auburn-orange);
}

.ausme-sme {
    color: var(--auburn-blue);
}

.title-word-1 {
    animation: fadeInUp 0.6s 0.1s forwards;
}

.title-word-2 {
    animation: fadeInUp 0.6s 0.2s forwards;
}

.title-word-3 {
    animation: fadeInUp 0.6s 0.3s forwards;
    position: relative;
}

.title-word-4 {
    animation: fadeInUp 0.6s 0.4s forwards;
}

.title-underline {
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--auburn-orange) 0%, var(--auburn-blue) 100%);
    margin: 1.5rem 0;
    border-radius: 2px;
    animation: expandWidth 0.8s 0.8s forwards;
}


.team-logo-container {
    flex: 30%;
    margin-left: 3rem;
}

.logo-wrapper {
    overflow: hidden;
}

.logo-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transform: scale(0);
    animation: scaleIn 0.6s 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: relative;
}

.logo-halo {
    position: absolute;
    top: -15%;
    left: -15%;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(221, 85, 12, 0.15) 0%, rgba(221, 85, 12, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    animation: fadeIn 0.6s 1.1s forwards, pulse 6s 1.5s infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 200px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.content_component {
    display: block;
    background-color: var(--gray);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}


.faq-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.faq-main-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--auburn_blue);
    margin-bottom: 50px;
}

.faq-item {
    background: var(--faq-gray);
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    opacity: 0;
    width: 60%;
    transform: translateY(40px);
    animation: fadeSlideUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.4s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--faq-gray);
    transition: background 0.2s ease;
    background: var(--auburn_blue);
}

.faq-title {
    color: var(--background);
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 2rem;
    color: var(--auburn-orange);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
    background-color: var(--white);
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.faq-item.active .faq-question {
    background-color: var(--white);
    border-left: 5px solid var(--auburn-orange);
    box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-title {
    color: var(--auburn-orange);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 20px 28px;
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.ausme-au {
    color: var(--auburn-orange);
    font-weight: bold;
}

.ausme-sme {
    color: var(--auburn-blue);
    font-weight: bold;
}


.counters-section {
    display: flex;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.counter-box {
    background: var(--auburn-blue);
    color: var(--white);
    padding: 2rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    margin: 10px;
}

.counter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--auburn_orange);
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
}


.counters-separator {
    width: 60%;
    height: 2px;
    background: var(--auburn-orange);
    margin: 40px auto; /* spacing above and below */
    border-radius: 2px;
}



@media screen and (max-width: 767px), screen and (max-width: 1024px) and (orientation: landscape) {
    body {
        font-size: 1em !important;
    }

    /*.logo-wrapper {*/
    /*    width: 100px;*/
    /*    height: 100px;*/
    /*}*/
    .team-header-container {
        padding: 0.4em 0;
    }

    .title-underline {
        margin: 1rem 0px;
    }

    .team-subtitle {
        font-size: 1em;
    }

    .btn-about-ausme {
        font-size: 0.8em;
    }

    .feedback-button {
        font-size: 0.8em;
    }

    .tool_info .link {
        font-size: 0.8em;
    }

    .powered_by_content {
        font-size: 0.8em;
    }
}
