/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f5f5f5;
}

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

/* Header Styles */
header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    width: 60px;
    height: 60px;
    filter: invert(1);
    flex-shrink: 0;
}

header h1 {
    font-size: 24px;
    font-weight: 700;
    flex: 1;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ccc;
}

/* Hero Section */
.hero {
    background-color: #2a2a2a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Content Section */
.content {
    padding: 60px 0;
    background-color: #fff;
}

.content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.content p {
    margin-bottom: 30px;
    color: #4a4a4a;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #333;
}

/* Forms Section */
.intro {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro p {
    margin-bottom: 15px;
    color: #4a4a4a;
}

.notice {
    font-size: 14px;
    color: #666;
    margin-top: 30px;
}

.contact-info {
    font-weight: 600;
    color: #1a1a1a;
}

.contact-info a {
    color: #1a1a1a;
}

.forms {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.form-section {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    font-weight: 500;
}

.sms-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1a1a1a;
}

.required {
    color: #666;
    font-size: 14px;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #666;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    flex: 1;
}

.submit-button {
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #333;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        justify-content: center;
        text-align: center;
    }

    header h1 {
        font-size: 20px;
        width: 100%;
    }

    nav {
        width: 100%;
        justify-content: center;
    }

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

    .social-links {
        flex-direction: column;
    }

    .form-section {
        padding: 20px;
    }
}