/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    background: white;
    border-radius: 0;
    box-shadow: none;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    background: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.hmf-logo-img {
    max-width: 100%;
    height: auto;
    width: 500px;
    display: block;
    margin: 0 auto;
}

.title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #0066cc;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-badge {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 50px;
    max-width: fit-content;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
}

.services-badge i {
    font-size: 28px;
}

/* Main Content */
.main-content {
    padding: 50px 30px;
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-item {
    background: #f8f9fa;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 28px;
    color: #0066cc;
    min-width: 35px;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #004999;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.contact-box {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.contact-box h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.phone-link:hover {
    transform: scale(1.05);
}

.phone-link i {
    font-size: 24px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
    .container {
        border-radius: 15px;
    }

    .logo-section {
        padding: 30px 15px;
    }

    .hmf-logo-img {
        width: 400px;
    }

    .title {
        font-size: 32px;
    }

    .services-badge {
        font-size: 18px;
        padding: 15px 25px;
        gap: 10px;
    }

    .services-badge i {
        font-size: 22px;
    }

    .main-content {
        padding: 40px 25px;
    }

    .contact-item {
        padding: 18px 25px;
    }

    .contact-item i {
        font-size: 24px;
    }

    .contact-item a {
        font-size: 20px;
    }

    .contact-box h2 {
        font-size: 24px;
    }

    .phone-link {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 10px;
    }

    .logo-section {
        padding: 25px 10px;
    }

    .hmf-logo-img {
        width: 300px;
    }

    .title {
        font-size: 24px;
    }

    .services-badge {
        font-size: 14px;
        padding: 12px 20px;
        gap: 8px;
        margin-bottom: 35px;
        flex-wrap: wrap;
    }

    .services-badge i {
        font-size: 18px;
    }

    .main-content {
        padding: 30px 20px;
    }

    .contact-item {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-item i {
        font-size: 22px;
    }

    .contact-item a {
        font-size: 18px;
        word-break: break-all;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .contact-box {
        padding: 25px 20px;
    }

    .contact-box h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .phone-link {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }

    .footer {
        padding: 15px;
        font-size: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .hmf-logo-img {
        width: 250px;
    }

    .title {
        font-size: 20px;
    }

    .services-badge {
        font-size: 12px;
        padding: 10px 15px;
    }

    .contact-item a {
        font-size: 16px;
    }

    .contact-box h2 {
        font-size: 20px;
    }

    .phone-link {
        font-size: 16px;
    }
}
