:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.header {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.header h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: block;
}

nav ul li a:hover {
    background-color: rgba(255,255,255,0.1);
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-color);
}

.section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.risk-list {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.risk-list h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.risk-list ul {
    list-style-type: none;
}

.risk-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.risk-list li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.details-link {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 24px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    width: 150px;
}

.details-link:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.details-link p {
    margin: 0;
}

.content-with-image {
    display: flex;
    gap: 30px;
    margin: 25px 0;
    align-items: flex-start;
}

.content-with-image .text-content {
    flex: 1;
}

.content-with-image .image-wrapper {
    flex: 0 0 45%;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-caption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.image-with-caption {
    margin: 25px 0;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.image-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.grid-item {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.grid-caption {
    padding: 10px;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.hero-image {
    position: relative;
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
}

.image-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.image-overlay p {
    margin: 0;
}

.form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.form-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .section img {
        height: 200px;
    }
    
    .content-with-image {
        flex-direction: column;
    }
    
    .content-with-image .image-wrapper {
        width: 100%;
    }
    
    .image-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .image-overlay {
        padding: 20px;
    }
    
    .image-overlay h3 {
        font-size: 1.4rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .header h1 {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 1rem;
    }
}
