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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5e6d3 0%, #e5d6a9 100%);
    color: #333;
    min-height: 100vh;
}
nav {
    background-color: #EEDA97;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
}

nav a:hover {
    background-color: #333;
    color: #EEDA97;
    transform: translateY(-2px);
}
.container {
    max-width: 700px;
    margin: 60px auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 60px;
    margin-bottom: 15px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.header p {
    font-size: 20px;
    color: #555;
}

.emoji-large {
    font-size: 80px;
    margin-bottom: 20px;
}
.contact-form {
    background-color: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 2px solid #333;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    border-color: #EEDA97;
    outline: none;
    box-shadow: 0 0 0 3px rgba(238, 218, 151, 0.3);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

button {
    width: 100%;
    padding: 18px;
    background: #333;
    color: #EEDA97;
    border: 2px solid #333;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: #EEDA97;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

button:active {
    transform: translateY(0);
}
.contact-info {
    background-color: white;
    border-radius: 25px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 2px solid #333;
}

.contact-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 40px;
    }

    .header p {
        font-size: 18px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .contact-form {
        padding: 30px;
    }

    .emoji-large {
        font-size: 60px;
    }
}