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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1899CD 0%, #219DCF 100%);
    color: white;
    padding: 15px 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    background: white;
    color: #1899CD;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 300;
}

.tagline {
    color: white;
    font-size: 14px;
    line-height: 1.3;
}

.top-badges {
    display: flex;
    align-items: center;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-circle {
    background: #FFA500;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.stars {
    font-size: 8px;
    line-height: 1;
}

.year {
    font-size: 12px;
}

.award-badge span {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.contact-info {
    text-align: right;
    font-size: 12px;
}

.cities {
    margin-bottom: 5px;
}

.city-links a {
    color: white;
    text-decoration: none;
    margin: 0 2px;
    padding: 2px 4px;
    border-radius: 3px;
    background: rgba(255,255,255,0.2);
}

.city-links a:hover {
    background: rgba(255,255,255,0.3);
}

.phone {
    font-weight: bold;
}

.phone a {
    color: white;
    text-decoration: none;
}

/* Navigation Styles */
.navigation {
    background: #1899CD;
    padding: 0;
    border-bottom: 3px solid #FFA500;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.1);
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-box button {
    padding: 8px 12px;
    background: #FFA500;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    color: #1899CD;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header h2 {
    color: #666;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.subtitle {
    color: #888;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-content h3 {
    color: #1899CD;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.benefit-item {
    color: #28a745;
    font-weight: 500;
    padding: 5px 0;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 60px;
}

.pricing-section h3 {
    text-align: center;
    color: #1899CD;
    font-size: 2rem;
    margin-bottom: 40px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border: 3px solid #FFA500;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #FFA500;
    color: white;
    padding: 5px 40px;
    font-weight: bold;
    font-size: 12px;
    transform: rotate(45deg);
    z-index: 10;
}

.card-header {
    background: linear-gradient(135deg, #1899CD, #219DCF);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.card-header h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.monthly {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.yearly-price {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.card-content {
    padding: 30px 20px;
}

.features {
    list-style: none;
    margin-bottom: 20px;
}

.features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.features li:first-child {
    padding-top: 0;
}

.note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 15px;
}

.card-footer {
    padding: 0 20px 30px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: #FFA500;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background: #e69500;
}

.pricing-card.premium .card-header {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.pricing-card.premium .btn-select {
    background: #28a745;
}

.pricing-card.premium .btn-select:hover {
    background: #218838;
}

/* Comparison Table */
.comparison-section {
    margin-bottom: 60px;
}

.comparison-section h3 {
    text-align: center;
    color: #1899CD;
    font-size: 2rem;
    margin-bottom: 30px;
}

.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #1899CD;
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 60px;
}

.why-choose-section h3 {
    text-align: center;
    color: #1899CD;
    font-size: 2rem;
    margin-bottom: 40px;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.reason-item h4 {
    color: #1899CD;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.reason-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1899CD, #219DCF);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary {
    background: #FFA500;
    color: white;
}

.btn-primary:hover {
    background: #e69500;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #1899CD;
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1899CD;
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer p {
    line-height: 1.8;
}

.footer a {
    color: white;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .navigation .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header h2 {
        font-size: 1.3rem;
    }
}

