/* ==========================================================================
   VARIABLES & RESET
   ========================================================================== */

:root {
    --primary-color: #4B3F72;       /* Тёплый индиго */
    --accent-amber: #FFC857;        /* Солнечный янтарь */
    --accent-teal: #2A9D8F;         /* Лазурный */
    --text-light: #FAF9F6;          /* Слоновая кость */
    --text-dark: #1B1B1E;           /* Глубокий графит */
    --accent-coral: #FF6B6B;        /* Коралловый */
    
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    
    --shadow-sm: 0 2px 8px rgba(75, 63, 114, 0.1);
    --shadow-md: 0 4px 16px rgba(75, 63, 114, 0.15);
    --shadow-lg: 0 8px 32px rgba(75, 63, 114, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --container-max-width: 1200px;
    --container-padding: 1rem;
    
    --header-height: 80px;
    --header-height-mobile: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(75, 63, 114, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: var(--header-height-mobile);
    transition: var(--transition-fast);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.logo a:hover {
    color: var(--accent-amber);
}

.logo svg {
    transition: var(--transition-fast);
}

.logo a:hover svg {
    transform: scale(1.1);
}

.navigation {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-amber);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-amber);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--accent-amber);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-fast);
}

.cta-button:hover {
    background: var(--accent-coral);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */

.main-content {
    padding-top: var(--header-height-mobile);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-teal) 100%);
    color: var(--text-light);
    padding: 8rem 0 6rem; /* Увеличенный padding-top для мобильной версии */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-amber);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta:hover {
    background: var(--accent-coral);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.card {
    background: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(75, 63, 114, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.card:hover .service-image {
    transform: scale(1.05);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Form */
.form-section {
    background: var(--primary-color);
    color: var(--text-light);
}

.form-section .section-title {
    color: var(--text-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(250, 249, 246, 0.3);
    border-radius: var(--border-radius);
    background: rgba(250, 249, 246, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-select {
    background: rgba(250, 249, 246, 0.15);
    color: var(--text-light);
    border: 1px solid rgba(250, 249, 246, 0.3);
}

.form-select option {
    background: var(--text-light);
    color: var(--text-dark);
    padding: 0.5rem;
    border: none;
}

.form-select:focus option {
    background: var(--text-light);
    color: var(--primary-color);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 0 3px rgba(255, 200, 87, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(250, 249, 246, 0.6);
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-checkbox {
    margin-top: 0.25rem;
}

.form-checkbox-label {
    font-size: 0.875rem;
    line-height: 1.4;
}

.form-checkbox-label a {
    color: var(--accent-amber);
    text-decoration: none;
}

.form-checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    background: var(--accent-amber);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.form-submit:hover {
    background: var(--accent-coral);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-amber);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-amber);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-contact-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(250, 249, 246, 0.3);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-contact-link:hover {
    background: rgba(250, 249, 246, 0.1);
    border-color: var(--accent-amber);
    color: var(--accent-amber);
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-contact-link {
        width: 100%;
        justify-content: center;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(250, 249, 246, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: var(--accent-teal);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    display: none;
    opacity: 0;
    transition: var(--transition-normal);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-amber);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    background: var(--accent-amber);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-btn:hover {
    background: var(--accent-coral);
    color: var(--text-light);
}

.cookie-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(250, 249, 246, 0.3);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.cookie-link:hover {
    border-color: var(--accent-amber);
    color: var(--accent-amber);
}

/* ==========================================================================
   ADDITIONAL COMPONENTS
   ========================================================================== */

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 200, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.about-details p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-amber);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-info p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(75, 63, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--accent-amber);
}

/* Card Price */
.card-price {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-teal);
}

/* Order Form */
.order-form {
    background: rgba(250, 249, 246, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(250, 249, 246, 0.2);
}

/* Policy Pages - Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(75, 63, 114, 0.1);
}

.cookie-table th {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
}

.cookie-table tr:hover {
    background: rgba(75, 63, 114, 0.05);
}

.policy-item h3 {
    color: var(--accent-teal);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.policy-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.policy-item a:hover {
    color: var(--accent-amber);
    text-decoration: underline;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
        --header-height: 80px;
    }

    .header {
        height: var(--header-height);
    }

    .main-content {
        padding-top: var(--header-height);
    }

    .hero-section {
        padding: 6rem 0; /* Нормальный padding для планшетов */
    }

    .hero-title {
        font-size: 3rem;
    }

    .navigation {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Policy Pages Mobile */
@media (max-width: 768px) {
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* Mobile menu styles */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height-mobile);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height-mobile));
        background: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: var(--transition-normal);
        gap: 1rem;
    }

    .mobile-menu-checkbox:checked ~ .nav-menu {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .cta-button {
        margin-top: 1rem;
    }
}

/* ==========================================================================
   POLICY PAGES
   ========================================================================== */

.policy-section {
    padding: 6rem 0 4rem;
    background: var(--text-light);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-meta {
    background: rgba(75, 63, 114, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    text-align: center;
}

.policy-meta p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.policy-intro {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
}

.policy-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.policy-sections {
    display: grid;
    gap: 2rem;
}

.policy-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(75, 63, 114, 0.1);
    box-shadow: var(--shadow-sm);
}

.policy-item h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-item ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-item li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.policy-item li strong {
    color: var(--primary-color);
}

.contact-info {
    background: rgba(75, 63, 114, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--accent-amber);
}

.policy-footer {
    background: var(--accent-teal);
    color: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 3rem;
    text-align: center;
}

.policy-footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-item {
        padding: 1.5rem;
    }
    
    .policy-intro {
        padding: 1.5rem;
    }
    
    .policy-footer {
        padding: 1.5rem;
    }
} 