* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #f8fafc, #e9ecef 80%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
}

.container {
    background: #fff;
    color: #222;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    object-fit: cover;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: #1a3a5d;
    text-shadow: none;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #4b6584;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #333;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.service-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(31, 38, 135, 0.04);
    transition: box-shadow 0.2s;
}

.service-item:hover {
    box-shadow: 0 4px 16px rgba(31, 38, 135, 0.10);
}

.service-item i {
    font-size: 2rem;
    color: #1a3a5d;
    margin-bottom: 0.5rem;
}

.service-item span {
    font-size: 1rem;
    color: #222;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1a3a5d;
}

.countdown-item span:last-child {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #4b6584;
}

.content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-section {
    margin: 2rem 0;
    background: #f4f7fa;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section p {
    margin-bottom: 1rem;
}

.about-section ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.about-section ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.about-section ul li:before {
    content: "•";
    color: #1a3a5d;
    position: absolute;
    left: 0;
}

.contact-info {
    margin: 2rem 0;
}

.email-link {
    color: #1a3a5d;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.7;
}

.phone {
    display: inline-block;
    margin-top: 0.7rem;
    color: #1a3a5d;
    font-size: 1.08rem;
    letter-spacing: 1px;
}

.phone i {
    margin-right: 0.5rem;
}

.social-links {
    margin-top: 2rem;
}

.social-icon {
    color: #1a3a5d;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fdbb2d;
}

.office-address {
    margin: 1.5rem 0 0.5rem 0;
    padding: 1.2rem 2rem;
    background: #f4f7fa;
    border-radius: 8px;
    color: #222;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(31, 38, 135, 0.04);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.office-address strong {
    color: #1a3a5d;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    .content h2 {
        font-size: 1.5rem;
    }
    .countdown {
        gap: 1rem;
    }
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    .hero-image img {
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    .countdown {
        flex-wrap: wrap;
    }
    .countdown-item {
        width: 45%;
        margin-bottom: 1rem;
    }
    .about-section {
        padding: 1rem;
    }
}
