/* Container and General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fa;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* Header Styles */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px; /* Add some space below header */
}

.header-logo {
    width: 80px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 15px; /* Space between logo and h1 */
}

header h1 {
    font-size: 2.8rem; /* Adjusted size slightly */
    color: #333; /* Darker color for better contrast with green logo */
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
}

/* Features Section */
.features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #075E54;
}

.feature-cards {
    flex-direction: column;
    align-items: center;
}

.feature-card {
    background-color: #e9f5ee;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #128C7E;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #075E54;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
}

/* CTA Section */
.cta {
    margin-top: 40px;
    padding: 30px;
    background-color: #dcf8c6;
    border-radius: 10px;
}

.cta h2 {
    font-size: 2rem;
    color: #075E54;
    margin-bottom: 20px;
}

.phone-number-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.phone-number-container input[type="text"] {
    padding: 10px;
    font-size: 1.2rem;
    border: 2px solid #25D366;
    border-radius: 5px 0 0 5px;
    text-align: center;
    outline: none;
}

.phone-number-container button {
    padding: 10px 15px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.phone-number-container button:hover {
    background-color: #128C7E;
}

.copy-feedback {
    color: #128C7E;
    font-weight: bold;
    margin-top: 10px;
}

/* Footer Styles */
footer {
    margin-top: 30px;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 30px 25px;
    }
    header h1 {
        font-size: 2.4em;
    }
    header p {
        font-size: 1.1em;
    }
    section h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 600px) {
    body {
        padding: 20px 10px;
    }
    .container {
        padding: 25px 15px;
        margin-top: 10px;
    }

    header h1 {
        font-size: 2.1em;
    }
    header p {
        font-size: 1em;
    }

    .features, .cta {
        text-align: center;
    }

    .features ol {
        /* Revert grid on small screens if needed, or keep single column */
        grid-template-columns: 1fr;
        padding-left: 0;
        text-align: left;
    }

    .features li {
        padding-left: 30px; /* Adjust padding */
    }

    .features li::before {
        font-size: 1.2em;
    }

    .phone-number-container {
        max-width: 95%;
    }
    .phone-number-container input[type="text"],
    .phone-number-container button {
        font-size: 1em;
        padding: 12px 15px;
    }
}

/* Add privacy statement styles */
.privacy-statement {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
    text-align: center;
} 