/* Basic Reset and Typography */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo p {
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
}

.logo span {
    font-size: 12px;
    color: #999;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

nav a:hover {
    border-color: #333;
}

.login-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
}

/* Main Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero .red-text {
    color: #e60023; /* Red color from the original site */
}

.hero .support-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.service-link {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #333;
    margin-bottom: 50px;
    transition: background-color 0.3s, color 0.3s;
}

.service-link:hover {
    background-color: #333;
    color: #fff;
}

.signature img {
    max-width: 250px;
    height: auto;
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero h2 {
        font-size: 36px;
    }
}
