/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: white;
    color: #0A2240;
    padding: 50px 0;
    text-align: center;
}

/* Logo styling */
.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 300px;
    height: auto;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main content */
main {
    padding: 50px 0;
}

section {
    margin-bottom: 50px;
    background-color: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #0A2240;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Price tag */
.price-tag {
    display: inline-block;
    background-color: #0A2240;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    margin: 20px 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Service list */
.what-you-get ul {
    list-style: none;
}

.what-you-get li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.what-you-get li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3A8F3A;
    font-weight: bold;
}

.what-you-get strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #0A2240;
}

/* Call to action */
.cta {
    text-align: center;
    padding: 40px;
}

.button {
    display: inline-block;
    background-color: #3A8F3A;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #2C6E2C;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Contact page styles */
.contact-info {
    text-align: center;
    padding: 50px 20px;
}

.contact-email {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.coming-soon {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.back-link {
    margin-top: 30px;
}

.back-link a {
    color: #0A2240;
    text-decoration: none;
    font-weight: bold;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        padding: 30px 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 1.7rem;
    }
    
    .what-you-get li {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.7rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}