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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    animation: fadeIn 0.8s ease-out;
}

.container {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 500px;
}

.address-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo img {
    height: 80px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.address-container h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.address-container p {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    color: #4a5568;
}

.address-container strong {
    color: #2d3748;
}

h1 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-form h2 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #48bb78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

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

.cf-turnstile {
    margin-bottom: 1rem;
}

button {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(72, 187, 120, 0.3);
}

button:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        width: 90%;
        max-width: 500px;
    }
    
    .address-container {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .address-container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .logo img {
        height: 60px;
    }
}