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

body {
    font-family: 'Josefin Sans', sans-serif;
    background-color: #fffaf6;
    color: #1d1d1d;
    line-height: 1.6;
}

.container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 54px;
    letter-spacing: 1.08px;
    line-height: 80px;
}

h2 {
    font-size: 40px;
    letter-spacing: 3.2px;
}

h3 {
    font-size: 24px;
    letter-spacing: 0.48px;
}

p {
    font-weight: 300;
    letter-spacing: 0.32px;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background: #7f5f30;
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #6a4f28;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 95, 48, 0.3);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 24px;
}

.section-header p {
    font-size: 20px;
    letter-spacing: 1.6px;
}

/* Cards */
.card {
    background: #fff5eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    h1 {
        font-size: 42px;
        line-height: 60px;
    }
    
    h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 32px;
        line-height: 45px;
    }
    
    h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
        line-height: 35px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #7f5f30;
    outline-offset: 2px;
}

/* Loading states */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}