* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    
}

body {
    background-color: #fefae0;
    min-height: 100vh;
    padding: 40px;
}

.main-title {
    text-align: center;
    color: #562323;
    margin-bottom: 40px;
    font-size: 36px;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.box {
    text-decoration: none;
    color: white;
    padding: 30px;
    border-radius: 20px;
    min-height: 220px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.box p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 40px rgba(0,0,0,0.4);
}

/* Different colors for each box */
.box1 {
    background: linear-gradient(135deg, #e9a6b1, #de739f);
}

.box2 {
    background: linear-gradient(135deg, #99e1ca, #5a98d6);
}

.box3 {
    background: linear-gradient(135deg, #af834e, #f9edb5);
    color: #efeded;
}

.box4 {
    background: linear-gradient(135deg, #b689de, #7d87cd);
}

.footer {
    margin-top: 60px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #000000;
}

.footer-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.footer-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-note {
    font-style: italic;
    opacity: 0.8;
}

.copyright {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.7;
}
