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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #2a2a2a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Header */
header {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-height: 80px;
    width: auto;
    display: block;
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.construction-message {
    text-align: center;
    padding: 10px 20px;
}

.construction-message h1 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #ffffff;
}

.construction-message p {
    font-size: 14px;
    color: #cccccc;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 15px 0;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-right: 25px;
}

.contact-info-right {
    text-align: center;
}

.info-item {
    text-align: center;
    margin-right: 25px;
}

.info-item:last-child {
    margin-right: 0;
}

.info-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: normal;
}

.info-item p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.info-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #d32f2f;
}

.social-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 15px auto 0;
    text-align: center;
}

.social-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: normal;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.social-link:hover {
    color: #d32f2f;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Map Section */
.map-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.map-section iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .construction-message h1 {
        font-size: 28px;
    }

    .construction-message p {
        font-size: 16px;
    }

    .logo-text-detailing {
        font-size: 24px;
    }

    .logo-text-studio {
        font-size: 18px;
    }

    .map-section iframe {
        height: 400px;
    }
}

