:root {
        --primary-color: #606060;
        --secondary-color: #718096;
        --accent-color: #2d3748;
        --white-color: #ffffff;
        --light-gray: #f7fafc;
        --medium-gray: #edf2f7;
        --dark-gray: #2d3748;
        --text-light: #718096;
        --text-dark: #2d3748;
        --heading: "Lora", serif;
        --font-body: "Open Sans", sans-serif;
        --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }


    /* Enhanced Hero Section */
    .study-australia-hero {
        background: linear-gradient(135deg, var(--light-gray) 0%, var(--white-color) 50%, var(--medium-gray) 100%);
        padding: 100px 0 120px;
        position: relative;
        overflow: hidden;
    }

    .study-australia-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(74, 85, 104, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(113, 128, 150, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-content-study {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: center;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .hero-text-study {
        animation: slideInLeft 1s ease-out;
    }

    .hero-text-study h1 {
        font-family: var(--heading);
        font-size: 3.5rem;
        color: var(--dark-gray);
        margin-bottom: 24px;
        line-height: 1.2;
        font-weight: 700;
        position: relative;
        text-shadow: none;
    }

    .hero-text-study h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
        animation: expandWidth 1.5s ease-out 0.5s both;
    }

    .hero-text-study .subtitle {
        font-family: var(--font-body);
        font-size: 1.3rem;
        color: var(--secondary-color);
        font-weight: 600;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .hero-text-study p {
        font-family: var(--font-body);
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 40px;
        animation: fadeInUp 1s ease-out 0.6s both;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
        animation: fadeInUp 1s ease-out 0.9s both;
    }

    .stat-item {
        text-align: center;
        padding: 20px;
        background: var(--white-color);
        border-radius: 12px;
        box-shadow: var(--shadow-soft);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }

    .stat-number {
        font-family: var(--heading);
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--primary-color);
        display: block;
        margin-bottom: 8px;
    }

    .stat-label {
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: var(--text-light);
        font-weight: 500;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        animation: fadeInUp 1s ease-out 1.2s both;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: var(--white-color);
        padding: 16px 32px;
        border: none;
        border-radius: 50px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-soft);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
        color: var(--white-color);
    }

    .btn-secondary {
        background: var(--white-color);
        color: var(--primary-color);
        padding: 16px 32px;
        border: 2px solid var(--primary-color);
        border-radius: 50px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

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

    .hero-image {
        position: relative;
        animation: slideInRight 1s ease-out 0.3s both;
    }

    .hero-image-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-large);
        transform: perspective(1000px) rotateY(-5deg);
        transition: transform 0.5s ease;
    }

    .hero-image-container:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1.02);
    }

    .hero-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

    .floating-tags {
        position: absolute;
        z-index: 3;
    }

    .tag {
        background: var(--white-color);
        padding: 12px 20px;
        border-radius: 25px;
        box-shadow: var(--shadow-medium);
        font-family: var(--font-body);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        gap: 8px;
        animation: float 3s ease-in-out infinite;
    }

    .tag-1 {
        top: 20px;
        right: -20px;
        animation-delay: 0s;
    }

    .tag-2 {
        bottom: 80px;
        left: -30px;
        animation-delay: 1s;
    }

    .tag-icon {
        width: 20px;
        height: 20px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white-color);
        font-size: 12px;
    }

    /* Enhanced Sections */
    .section-wrapper {
        position: relative;
        overflow: hidden;
    }

    .advantages-section {
        padding: 80px 0;
        background: var(--white-color);
    }

    .section-title {
        font-family: var(--heading);
        font-size: 2.8rem;
        color: var(--dark-gray);
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
        animation: fadeInUp 0.8s ease-out;
    }

    .section-subtitle {
        font-family: var(--font-body);
        font-size: 1.2rem;
        color: var(--text-light);
        text-align: center;
        margin-bottom: 80px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

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

    .content-text {
        animation: fadeInLeft 0.8s ease-out;
    }

    .content-text h2 {
        font-family: var(--heading);
        font-size: 2.4rem;
        color: var(--dark-gray);
        margin-bottom: 24px;
        font-weight: 600;
        line-height: 1.3;
    }

    .content-text p {
        font-family: var(--font-body);
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    .content-image {
        animation: fadeInRight 0.8s ease-out 0.3s both;
    }

    .content-image img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: var(--shadow-medium);
        transition: transform 0.3s ease;
    }

    .content-image img:hover {
        transform: scale(1.03);
    }

    /* Education System Section */
    .education-system-section {
        background: var(--light-gray);
        padding: 80px 0;
    }

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

    .aqf-logo {
        background: var(--white-color);
        padding: 50px 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: var(--shadow-medium);
        animation: fadeInUp 0.8s ease-out;
    }

    .aqf-logo h3 {
        font-family: var(--heading);
        color: var(--dark-gray);
        margin-bottom: 20px;
        font-size: 1.6rem;
        font-weight: 600;
    }

    .aqf-placeholder {
        width: 100%;
        height: 120px;
        background: linear-gradient(135deg, var(--medium-gray), var(--secondary-color));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    /* Enhanced Accommodation Section */
    .cost-section {
        padding: 80px 0;
        background: var(--white-color);
    }

    .accommodation-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin: 60px 0;
    }

    .accommodation-item {
        background: var(--white-color);
        padding: 40px 30px;
        border-radius: 16px;
        text-align: center;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--medium-gray);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .accommodation-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .accommodation-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-large);
    }

    .accommodation-item:hover::before {
        transform: scaleX(1);
    }

    .accommodation-item .number {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white-color);
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .accommodation-item h4 {
        font-family: var(--heading);
        color: var(--dark-gray);
        margin-bottom: 12px;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .accommodation-item .price {
        font-family: var(--font-body);
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1.1rem;
    }

    /* Enhanced Scholarship Section */
    .scholarship-section {
        background: var(--light-gray);
        padding: 80px 0;
        position: relative;
    }

    .scholarship-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 10% 20%, rgba(74, 85, 104, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(113, 128, 150, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .scholarship-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 60px;
        position: relative;
        z-index: 2;
    }

    .scholarship-card {
        background: var(--white-color);
        padding: 50px 40px;
        border-radius: 20px;
        box-shadow: var(--shadow-soft);
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid var(--medium-gray);
        position: relative;
        overflow: hidden;
    }

    .scholarship-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(74, 85, 104, 0.05), transparent);
        transform: rotate(45deg) translateX(-100%);
        transition: transform 0.6s ease;
    }

    .scholarship-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-large);
    }

    .scholarship-card:hover::before {
        transform: rotate(45deg) translateX(100%);
    }

    .scholarship-logo {
        width: 100%;
        height: 120px;
        background: linear-gradient(135deg, var(--medium-gray), var(--secondary-color));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white-color);
        font-weight: 600;
        margin-bottom: 30px;
        font-size: 1.1rem;
        position: relative;
        z-index: 2;
    }

    .scholarship-card h4 {
        font-family: var(--heading);
        color: var(--dark-gray);
        margin-bottom: 20px;
        font-size: 1.4rem;
        font-weight: 600;
        position: relative;
        z-index: 2;
    }

    .scholarship-card p {
        font-family: var(--font-body);
        color: var(--text-light);
        line-height: 1.7;
        font-size: 1rem;
        position: relative;
        z-index: 2;
    }

    /* Enhanced Work Study Section */
    .work-study-section {
        background: var(--white-color);
        padding: 80px 0;
    }

    .highlight-box {
        background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
        padding: 40px;
        border-radius: 16px;
        border-left: 6px solid var(--primary-color);
        margin: 40px 0;
        box-shadow: var(--shadow-soft);
    }

    .highlight-box h3 {
        font-family: var(--heading);
        color: var(--dark-gray);
        margin-bottom: 16px;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .highlight-box p {
        font-family: var(--font-body);
        color: var(--text-light);
        line-height: 1.7;
        margin: 0;
        font-size: 1.1rem;
    }

    /* Enhanced CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
        padding: 100px 0;
        text-align: center;
        color: var(--white-color);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }

    .cta-section h2 {
        font-family: var(--heading);
        font-size: 3rem;
        margin-bottom: 24px;
        font-weight: 700;
        position: relative;
        z-index: 2;
    }

    .cta-section p {
        font-family: var(--font-body);
        font-size: 1.3rem;
        margin-bottom: 50px;
        opacity: 0.95;
        position: relative;
        z-index: 2;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        display: inline-block;
        background: var(--white-color);
        color: var(--dark-gray);
        padding: 20px 50px;
        border-radius: 50px;
        text-decoration: none;
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-medium);
        position: relative;
        z-index: 2;
    }

    .cta-button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--shadow-large);
        color: var(--dark-gray);
    }

    /* Animations */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes expandWidth {
        from {
            width: 0;
        }

        to {
            width: 80px;
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-content-study {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: center;
        }

        .hero-text-study h1 {
            font-size: 3rem;
        }

        .hero-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {

        .hero-content-study,
        .content-grid,
        .system-info {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-text-study h1 {
            font-size: 2.5rem;
        }

        .hero-stats {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .accommodation-grid {
            grid-template-columns: 1fr;
        }

        .scholarship-grid {
            grid-template-columns: 1fr;
        }

        .cta-section h2 {
            font-size: 2.2rem;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .tag-1,
        .tag-2 {
            position: static;
            margin: 10px 0;
        }
    }

    @media (max-width: 480px) {
        .hero-text-study h1 {
            font-size: 2rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

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