:root {
    /* Core colors */
    --primary: #3a506b;
    --secondary: #1c2541;
    --accent: #5bc0be;
    --accent-light: #6fffe9;
    --dark: #0b132b;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c7a89;
    --light-gray: #edf2f4;
    
    /* Text */
    --text-primary: #0b132b;
    --text-secondary: #3a506b;
    --text-light: #f8f9fa;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(11, 19, 43, 0.05);
    --shadow-md: 0 4px 12px rgba(11, 19, 43, 0.08);
    --shadow-lg: 0 8px 24px rgba(11, 19, 43, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p, li, a, input, textarea, button, label {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    transition: all var(--transition-normal);
}

header.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 101;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
    margin-right: 12px;
    transition: transform var(--transition-normal);
}

.logo span {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}

.logo a:hover img {
    transform: rotate(-5deg);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

nav ul li {
    margin-left: 40px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-fast);
    padding-bottom: 5px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-normal);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.contact-btn a {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.contact-btn a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--text-light);
    padding: 180px 0 120px;
    background-color: var(--secondary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 80, 107, 0.9), rgba(28, 37, 65, 0.95));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, var(--accent-light) 0%, rgba(91, 192, 190, 0) 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 29px;
    background: transparent;
    color: var(--light);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid var(--light);
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
    background-color: var(--white);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to right bottom, var(--white) 0%, var(--white) 49%, transparent 50%);
    z-index: 1;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 180px;
    height: 180px;
    border: 3px solid var(--accent-light);
    z-index: 0;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to left bottom, var(--white) 0%, var(--white) 49%, transparent 50%);
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-light) 0%, rgba(91, 192, 190, 0) 70%);
    opacity: 0.1;
    z-index: 0;
}

.services h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
    position: relative;
}

.services .subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
    transition: height var(--transition-normal);
}

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

.service-card:hover::before {
    height: 100%;
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--accent);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.service-card .icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--accent-light);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
    transition: all var(--transition-normal);
}

.service-card:hover .icon::after {
    transform: scale(1.2);
    opacity: 0.3;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-normal);
}

.service-card:hover h3::after {
    width: 70px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transform: translateX(0);
    transition: transform var(--transition-normal);
}

.service-card .learn-more svg {
    width: 18px;
    height: 18px;
    margin-left: 5px;
    transition: transform var(--transition-normal);
}

.service-card:hover .learn-more {
    transform: translateX(5px);
}

.service-card:hover .learn-more svg {
    transform: translateX(3px);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to right bottom, var(--light-gray) 0%, var(--light-gray) 49%, transparent 50%);
    z-index: 1;
}

.contact-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.contact-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.support-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.support-form::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--accent-light);
    opacity: 0.1;
    z-index: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--white);
    transition: all var(--transition-fast);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(91, 192, 190, 0.1);
}

textarea {
    resize: vertical;
}

button.button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

button.button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Page Header */
.page-header {
    padding: 180px 0 80px;
    background-color: var(--secondary);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 80, 107, 0.9), rgba(28, 37, 65, 0.95));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to left bottom, var(--white) 0%, var(--white) 49%, transparent 50%);
    z-index: 1;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-light) 0%, rgba(91, 192, 190, 0) 70%);
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--light);
}

.footer-logo p {
    color: var(--light);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--light);
    opacity: 0.8;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Support Page Styles */
.support-options {
    padding: 80px 0;
    background-color: var(--white);
}

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

.support-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
}

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

.support-card .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    background-color: rgba(91, 192, 190, 0.1);
    border-radius: 50%;
}

.support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.support-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.support-card .button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.support-card .button.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.support-card .button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.accordion {
    margin-top: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform var(--transition-fast);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    border-top: 0px solid var(--light-gray);
}

.accordion-content p {
    padding: 0 0 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    border-top: 1px solid var(--light-gray);
}

.accordion-item.active .accordion-header {
    background-color: rgba(91, 192, 190, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .about .container,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image::before {
        width: 150px;
        height: 150px;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform var(--transition-normal);
        z-index: 100;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column h3 {
        display: block;
        text-align: center;
    }
    
    .policy-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .about,
    .services,
    .contact-section {
        padding: 80px 0;
    }
    
    .support-form {
        padding: 30px 20px;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .accordion-content p {
        padding: 0 0 15px;
        font-size: 0.95rem;
    }
}
