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

:root {
    --bg-primary: #FAF6F0;
    --bg-secondary: #E6E0D6;
    --accent: #7B685D;
    --bg-light: #FEF9F4;
    --text-dark: #221f1c;
    --shadow-sm: 0 2px 8px rgba(76, 66, 57, 0.08);
    --shadow-md: 0 4px 16px rgba(76, 66, 57, 0.12);
    --shadow-lg: 0 12px 32px rgba(76, 66, 57, 0.18);
    --shadow-xl: 0 20px 48px rgba(76, 66, 57, 0.25);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    background-color: rgba(254, 249, 244, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

header:hover {
    box-shadow: var(--shadow-md);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all var(--transition-base);
    position: relative;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 70px;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;

}

.logo:hover {
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

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

.nav-menu a:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform var(--transition-base);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle:active {
    transform: scale(0.95);
}

main {
    min-height: calc(100vh - 200px);
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    animation: fadeInUp var(--transition-slow) ease-out;
}

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

.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-light) 100%);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;

}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 104, 93, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 66, 57, 0.08) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #6d5a4f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--text-dark) 0%, #3a322c 100%);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn:focus {
    outline: 3px solid rgba(123, 104, 93, 0.3);
    outline-offset: 2px;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-dark);
    box-shadow: none;
    border: 2px solid transparent;
}

.btn-secondary::before {
    background: linear-gradient(90deg, transparent, rgba(76, 66, 57, 0.1), transparent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--text-dark));
    border-radius: 2px;
}

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

.card {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(254, 249, 244, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(123, 104, 93, 0.08);
    position: relative;
    overflow: hidden;
}
.card a{
    margin-top: 7px;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 104, 93, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(123, 104, 93, 0.15);
}

.card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.card p {
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.8;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.card:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.features {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(230, 224, 214, 0.7) 100%);
    position: relative;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.two-col img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

.content-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
}

.content-block p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    opacity: 0.9;
}

.content-block ul {
    list-style: none;
    margin-bottom: 2rem;
}

.content-block li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.content-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--text-dark) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta h2,
.cta p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta .btn {
    background: #fff;
    color: var(--text-dark);
    margin-top: 1rem;
}

.cta .btn:hover {
    background: var(--bg-light);
    transform: translateY(-3px) scale(1.05);
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--bg-secondary);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: all var(--transition-base);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--accent);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(123, 104, 93, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.checkbox-group a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.contact-info {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(230, 224, 214, 0.7) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid rgba(123, 104, 93, 0.1);
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.6;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-info a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.success-message {
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.success-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    width: 120px;
    height: 120px;
}

.success-checkmark {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.checkmark {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: var(--accent);
    stroke-miterlimit: 10;
    animation: fillCheckmark 0.6s ease-in-out 0.4s forwards;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--accent);
    fill: none;
    animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeCircle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes strokeCheck {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fillCheckmark {
    0% {
        box-shadow: inset 0px 0px 0px var(--accent);
    }
    100% {
        box-shadow: inset 0px 0px 0px 30px rgba(123, 104, 93, 0.1);
    }
}

.success-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation: ringPulse 2s ease-out infinite;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation: ringPulse 2s ease-out 0.5s infinite;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation: ringPulse 2s ease-out 1s infinite;
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}



@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.success-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.success-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-pulse {
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(123, 104, 93, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(123, 104, 93, 0);
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(123, 104, 93, 0.1) 0%, rgba(123, 104, 93, 0.05) 100%);
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -30px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg);
        opacity: 0.6;
    }
}

.card-animated {
    position: relative;
    animation: cardSlideIn 0.6s ease-out both;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--text-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 1;
    animation: numberPop 0.5s ease-out 0.3s both;
}

@keyframes numberPop {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconBounce 0.6s ease-out 0.5s both;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(123, 104, 93, 0.1);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--text-dark) 100%);
    border-radius: 0 0 16px 16px;
    transition: width 0.6s ease-out;
}

.card:hover .progress-bar {
    width: 100% !important;
}

.glass-card {
    background: rgba(254, 249, 244, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 104, 93, 0.2);
    box-shadow: 0 8px 32px rgba(76, 66, 57, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 104, 93, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    animation: iconSpin 2s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: all var(--transition-base);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 140px;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:hover {
    color: var(--text-dark);
}

.contact-value {
    color: var(--text-dark);
    opacity: 0.9;
}

footer {
    background: linear-gradient(180deg, var(--text-dark) 0%, #3a322c 100%);
    color: #fff;
    padding: 4rem 2rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-section a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.privacy-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.25rem;
    font-size: 0.9rem;
}

.privacy-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.privacy-links a:hover {
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn var(--transition-base);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    animation: slideUp var(--transition-base);
    border: 1px solid rgba(123, 104, 93, 0.1);
}

.modal-content h2 {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
}

.modal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
}

.modal-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.modal-content a:hover {
    text-decoration: underline;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.policy-content h1 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
}

.policy-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    opacity: 0.9;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.policy-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.policy-content a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}
@media (max-width: 830px){
    .nav-menu{
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(254, 249, 244, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: var(--shadow-md);
        display: none;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown var(--transition-base);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(123, 104, 93, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 5rem 2rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    section {
        padding: 4rem 1.5rem;
    }

    .success-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .success-checkmark,
    .checkmark {
        width: 100px;
        height: 100px;
    }

    .gradient-text {
        font-size: 2.25rem;
    }

    .success-subtitle {
        font-size: 1.1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-label {
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .privacy-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo span{
        display: none;
    }
    nav {
        padding: 1rem;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 3rem 1.25rem;
    }

    .modal-content {
        padding: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .card {
        padding: 2rem;
    }

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

    .success-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .success-checkmark,
    .checkmark {
        width: 80px;
        height: 80px;
    }

    .gradient-text {
        font-size: 1.85rem;
    }

    .success-subtitle {
        font-size: 1rem;
    }

    .card-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        top: -12px;
        right: -12px;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .floating-shapes .shape {
        display: none;
    }
}

@media (max-width: 320px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .card {
        padding: 1.5rem;
    }

    section {
        padding: 2.5rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
