/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fffaf5; /* Light cream background */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Logo */
header {
    padding: 20px 0;
    background: transparent;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d35400; /* Deep Saffron */
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to bottom, #fffaf5, #ffffff);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.subtitle {
    font-size: 1.2rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    color: #555;
}

.description p {
    margin-bottom: 20px;
}

/* Buttons */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: #d35400;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #e67e22;
}

.btn-secondary {
    border: 2px solid #d35400;
    color: #d35400;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: #d35400;
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 0;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .cta-group { flex-direction: column; }
}