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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #F1ED8F;
    color: #000000;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Grid pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.tag {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #F1ED8F;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

main {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

section {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.contact address {
    font-style: normal;
    text-align: center;
}

.contact p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact a:hover {
    opacity: 0.7;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    header {
        margin-bottom: 50px;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 30px;
    }

    .services-tags {
        gap: 8px;
    }

    .tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    section {
        padding: 30px 20px;
    }

    h2 {
        font-size: 18px;
    }

    .contact p {
        font-size: 16px;
    }
}
