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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #ffffff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section - Exact match to screenshot */
.hero {
    background: #ffffff;
    padding: 40px 0 20px 0;
    text-align: center;
}

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

.logo-box {
    padding: 30px 20px;
    display: inline-block;
}

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

.logo-text {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 0.9;
    color: #000;
}

.logo-subtitle {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-top: 8px;
    color: #000;
}

/* Description Section - Exact text layout */
.description {
    background: #ffffff;
    padding: 40px 0;
}

.description-content {
    max-width: 680px;
    margin: 0 auto;
}

.main-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
}

.secondary-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    text-align: left;
}

.main-description strong,
.secondary-description strong {
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: #ffffff;
    padding: 60px 0 100px 0;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: #ccc;
}

/* Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}



/* Success Alert Styling */
.alert {
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 15px 0;
    font-size: 16px;
    line-height: 1.5;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-bottom: 3px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-bottom: 3px solid #dc3545;
}

.alert strong {
    font-weight: 600;
}

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

    .hero {
        padding: 20px 0 10px 0;
    }

    .logo-box {
        padding: 40px 50px;
        border-width: 6px;
    }

    .logo-text {
        font-size: 48px;
    }

    .logo-subtitle {
        font-size: 18px;
    }

    .description {
        padding: 20px 0;
    }

    .main-description,
    .secondary-description {
        font-size: 16px;
    }

    .contact {
        padding: 40px 0 60px 0;
    }

    .contact h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo-box {
        padding: 30px 40px;
        border-width: 4px;
    }

    .logo-text {
        font-size: 36px;
    }

    .logo-subtitle {
        font-size: 14px;
    }

    .main-description,
    .secondary-description {
        font-size: 15px;
    }

    .hero {
        padding: 15px 0 8px 0;
    }

    .description {
        padding: 15px 0;
    }
}
