* {
    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: #f9f9f9;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 2.5em;
    margin: 0;
}

.tagline {
    font-size: 0.9em;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #DC143C 0%, #FF6347 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.big-text {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    background-color: #FFD700;
    color: #8B0000;
    border: none;
    padding: 18px 40px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #8B0000;
}

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

.feature {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature h3 {
    color: #8B0000;
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8e8e8 100%);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #8B0000;
}

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

.price-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.price-item:hover {
    transform: scale(1.05);
}

.price-item.highlight {
    background: linear-gradient(135deg, #DC143C 0%, #FF6347 100%);
    color: white;
    transform: scale(1.05);
}

.price-item h3 {
    color: #8B0000;
    margin-bottom: 15px;
}

.price-item.highlight h3 {
    color: #FFD700;
}

.price {
    font-size: 2.5em;
    font-weight: bold;
    margin: 15px 0;
    color: #FFD700;
}

.price-item.highlight .price {
    color: white;
}

.note {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.95em;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #8B0000;
}

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

.info-item {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #DC143C;
}

.info-item h3 {
    color: #8B0000;
    margin-bottom: 15px;
}

.info-item a {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2em;
    }

    nav ul {
        gap: 15px;
        font-size: 0.9em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .big-text {
        font-size: 1.2em;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
}