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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

h1, h2, h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2em;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5em;
    color: #d4af37;
    margin-top: 30px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.1em;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: "▶";
    color: #d4af37;
    position: absolute;
    left: 0;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

header h1 {
    color: #fff;
    margin: 0;
    padding-bottom: 15px;
    font-size: 3em;
}

header p {
    font-size: 1.3em;
    font-style: italic;
    color: #ecf0f1;
}

/* Sections */
.section-light {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 60px 0;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.section-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 60px 0;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.section-dark h2, .section-dark h3 {
    color: #fff;
}

.section-dark h2 {
    border-bottom-color: #d4af37;
}

.section-dark h3 {
    color: #f39c12;
}

.hero {
    text-align: center;
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    margin: 20px 0;
}

.hero h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 30px;
}

/* Special styling for quotes */
blockquote {
    border-left: 5px solid #d4af37;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2em;
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 10px;
}

/* Contact section styling */
#contact ul li {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

#contact ul li:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Footer */
footer {
    padding: 30px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1.1em;
    }

    h2 {
        font-size: 1.7em;
    }

    h3 {
        font-size: 1.3em;
    }

    p {
        font-size: 1em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .section-light, .section-dark, .hero {
        padding: 40px 0;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    ul li {
        padding-left: 15px;
    }
}


