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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.header {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #e11d48;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #be123c;
}

.section {
    padding: 70px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.gray {
    background: #e5e7eb;
}

.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background: white;
    padding: 25px;
    flex: 1 1 280px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #9ca3af;
    height: 180px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    transition: 0.3s;
}

.card:hover {
    background: #6b7280;
}

.cta {
    background: #111827;
    color: white;
    text-align: center;
}

form {
    max-width: 400px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

button {
    padding: 15px;
    border: none;
    background: #e11d48;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #be123c;
}

#formMessage {
    margin-top: 15px;
    font-weight: bold;
}

.footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

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