* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #fcb13a 0%, #f2edd9 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: linear-gradient(185deg, #fcb13a 0%, #f2edd9 100%);
    backdrop-filter: blur(10px);
    color: #ecf0f1;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.logo {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #3498db;
}

main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.feature-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 400px;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(52, 152, 219, 0.1);
}

.feature-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid #3498db;
}

.feature-box h2 {
    padding: 25px 25px 15px;
    color: #2c3e50;
    font-size: 1.6rem;
}

.feature-box p {
    padding: 0 25px 25px;
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #c7820b;
    color: #ecf0f1;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    .feature-container {
        flex-direction: column;
    }
} 