* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D6B3C9;
    --secondary-color: #838091;
    --gold: #D4AF37;
    --black: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    display: block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/picture.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.content-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.content-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: var(--light-gray);
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: 1px;
}

.content-card p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Icons */
.icon {
    width: 60px;
    height: 60px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 1.5rem;
}

/* Text Content */
.text-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--secondary-color);
    text-align: justify;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.text-content h2 {
    font-size: 2rem;
    color: var(--black);
    margin: 2.5rem 0 1.5rem;
    letter-spacing: 1px;
}

.text-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.text-content li {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 5rem 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(214, 179, 201, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.benefit-icon .icon {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: 1px;
}

.benefit-item p {
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Accordion Section */
.accordion-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.accordion-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(214, 179, 201, 0.05) 100%);
    color: var(--gold);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.accordion-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    padding-top: 1rem;
    font-size: 1rem;
}

/* Trust Badges Section */
.trust-badges-section {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    padding: 5rem 2rem;
    color: var(--white);
}

.trust-badges-section .section-title,
.trust-badges-section .section-subtitle {
    color: var(--white);
}

.trust-badges-section .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.trust-badge {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-badge:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.badge-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.badge-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        padding: 1rem 0;
        font-size: 1rem;
        width: 100%;
        display: block;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        padding-left: 1rem;
        background: rgba(212, 175, 55, 0.1);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .text-content {
        font-size: 1rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-item {
        padding: 2rem 1.5rem;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1.5rem 1.2rem;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .badge-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        padding: 1.5rem 1rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.8rem 0;
    }

    .hero-banner {
        height: 70vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .content-card img {
        height: 200px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon .icon {
        width: 30px;
        height: 30px;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1.5rem 1.2rem;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-badge {
        padding: 2rem 1rem;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-label {
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--gold);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #B8941F;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: var(--black);
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-text {
        min-width: auto;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1.2rem 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 5rem 2rem;
    background: var(--white);
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.legal-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gold);
}

.legal-updated {
    text-align: center;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-content {
    line-height: 1.8;
    color: var(--secondary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    letter-spacing: 1px;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin: 2rem 0 1rem;
    letter-spacing: 0.5px;
}

.legal-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-content a:hover {
    border-bottom-color: var(--gold);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.legal-table thead {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
}

.legal-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.legal-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem 1.5rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .legal-table {
        font-size: 0.9rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 320px) {
    .legal-section {
        padding: 3rem 1rem;
    }

    .legal-container {
        padding: 1.5rem 1rem;
    }

    .legal-title {
        font-size: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }

    .legal-table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
    }

    .legal-content ul,
    .legal-content ol {
        margin-left: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(214, 179, 201, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.contact-icon .icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    letter-spacing: 1px;
}

.contact-text p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin: 0;
}

.contact-form-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Success Section */
.success-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(214, 179, 201, 0.1) 100%);
    border-radius: 50%;
    border: 3px solid var(--gold);
    animation: scaleIn 0.5s ease;
}

.success-icon .icon {
    width: 50px;
    height: 50px;
    stroke: var(--gold);
    stroke-width: 2;
}

.success-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.success-message {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.success-details {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--gold);
}

.success-details p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.success-info {
    text-align: left;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid var(--gold);
}

.success-info h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.success-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-info li {
    color: var(--secondary-color);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.success-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .success-container {
        padding: 3rem 2rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .success-container {
        padding: 2rem 1.5rem;
    }

    .success-title {
        font-size: 1.5rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon .icon {
        width: 40px;
        height: 40px;
    }
}

