:root {
    --color-primary: #D4A017;
    --color-primary-dark: #B8860B;
    --color-text: #2c3e50;
    --color-text-light: #34495e;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-border: #ecf0f1;
    --color-link: #D4A017;
}

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

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Navigation */
.navbar {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--color-primary) !important;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: var(--color-text) !important;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Content Wrapper */
.content-wrapper {
    padding: 3rem 0;
}

.content-section {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    display: block;
}

/* Conclusion Section */
.conclusion {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.conclusion p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: white;
    text-decoration: none;
}

.btn-primary:focus {
    background-color: var(--color-primary-dark);
    color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.25);
}

/* Forms */
.contact-form {
    margin: 2rem 0;
}

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

.form-group label {
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-check-input {
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    color: var(--color-text);
}

.form-check-label a {
    color: var(--color-link);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer .links a {
    margin-right: 0.5rem;
}

.footer .small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Typography */
h1 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .hero-section {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section p {
        font-size: 0.95rem;
    }

    .content-wrapper {
        padding: 2rem 0;
    }

    .content-section {
        margin-bottom: 2rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer .row {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .content-section h2 {
        font-size: 1.3rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer .col-md-6 {
        text-align: center;
    }

    .footer .links {
        margin-top: 1rem;
    }

    .footer .links p {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .links a {
        margin: 0.25rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: rgba(44, 62, 80, 0.6);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
}

.mt-4 {
    margin-top: 2rem;
}

.offset-md-2 {
    margin-left: 16.66667%;
}

@media (max-width: 768px) {
    .offset-md-2 {
        margin-left: 0;
    }
}
