* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #3a3a3a;
    line-height: 1.6;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

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

.navbar-brand {
    margin: 0;
    padding: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: #0056b3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: #3a3a3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    background: rgba(26, 26, 62, 0.7);
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        height: 350px;
    }
    
    .hero-content {
        padding: 40px 25px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

.btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #22c55e;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
    color: #ffffff;
}

.btn-secondary {
    background-color: #ff8c42;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ff7a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.3);
    color: #ffffff;
}

.steps-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.steps-section .container {
    max-width: 900px;
}

.steps-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a3e;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a3e;
    margin: 0;
}

.step-line {
    width: 40px;
    height: 3px;
    background-color: #0056b3;
    margin: 0 10px;
    flex-shrink: 0;
}

.steps-info {
    text-align: center;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }
    
    .step-line {
        width: 3px;
        height: 40px;
        margin: 10px 0;
    }
    
    .steps-section {
        padding: 50px 0;
    }
}

.comparison-things {
    padding: 80px 0;
    background-color: #ffffff;
}

.comparison-things h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a3e;
}

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

.thing-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.thing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.thing-card h3 {
    color: #1a1a3e;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.thing-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.examples-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.examples-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a3e;
}

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

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a3e;
    margin: 0 0 10px;
}

.product-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px;
    line-height: 1.5;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #22c55e;
    margin: 0 0 12px;
}

.list-badge {
    display: inline-block;
    background-color: #d4edda;
    color: #155724;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.blue-stripe {
    background-color: #0056b3;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.stripe-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 768px) {
    .stripe-content {
        gap: 20px;
        font-size: 14px;
    }
}

.background-section {
    position: relative;
    padding: 100px 0;
    margin: 40px 0;
    background: linear-gradient(rgba(26, 26, 62, 0.75), rgba(26, 26, 62, 0.75));
}

.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
}

.bg-overlay {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.bg-overlay h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.bg-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.bg-list li {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.bg-list li:last-child {
    border-bottom: none;
}

.bg-list li::before {
    content: "→ ";
    margin-right: 10px;
    font-weight: 700;
}

.tables-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.tables-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a3e;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.info-table thead {
    background-color: #f0f0f0;
}

.info-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #1a1a3e;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #3a3a3a;
    font-size: 14px;
}

.info-table tbody tr:hover {
    background-color: #f8f8f8;
}

.gallery-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.gallery-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a3e;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a3e;
}

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

.faq-card {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.faq-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a3e;
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
}

.footer {
    background-color: #1a1a3e;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #b0b0b0;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a3e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #b0b0b0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
}

.cookie-banner.hidden {
    display: none;
}

.how-to-use {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.how-to-use h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a3e;
}

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

.how-to-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.how-to-number {
    width: 50px;
    height: 50px;
    background-color: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.how-to-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a3e;
    margin-bottom: 12px;
}

.how-to-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.products-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.products-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a3e;
}

.comparison-table-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.comparison-table-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a3e;
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.comparison-table thead {
    background-color: #f0f0f0;
}

.comparison-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
    color: #1a1a3e;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #ddd;
}

.comparison-table td {
    padding: 18px;
    border-bottom: 1px solid #f0f0f0;
    color: #3a3a3a;
    font-size: 14px;
}

.comparison-table tbody tr:hover {
    background-color: #f8f8f8;
}

.info-banner {
    padding: 30px 0;
    background-color: #f8f8f8;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.about-content {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #3a3a3a;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.example-box {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ff8c42;
}

.example-box p {
    margin: 10px 0;
    font-size: 14px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.category-box {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.category-box h3 {
    color: #0056b3;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.category-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.rule-box {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.rule-number {
    width: 40px;
    height: 40px;
    background-color: #0056b3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.rule-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a3e;
    margin-bottom: 10px;
}

.rule-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.about-final {
    text-align: center;
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

.about-final a {
    margin-top: 20px;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.7;
    margin: 0;
}

.contact-item a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-note {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

.contact-form-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a3e;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}

.form-checkbox a {
    color: #0056b3;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
}

.thank-you-section {
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.thank-you-card {
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-width: 600px;
}

.thank-you-card h1 {
    font-size: 42px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 20px;
}

.thank-you-card p {
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thank-you-card .btn {
    margin-top: 30px;
}

.legal-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a3e;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.legal-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #3a3a3a;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: 700;
    font-size: 18px;
}

.legal-content a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .steps-section,
    .comparison-things,
    .examples-section,
    .tables-section,
    .gallery-section,
    .faq-section,
    .how-to-use,
    .products-section,
    .comparison-table-section {
        padding: 50px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 24px;
    }
    
    .thank-you-card {
        padding: 40px 25px;
    }
    
    .thank-you-card h1 {
        font-size: 32px;
    }
    
    .about-section h2 {
        font-size: 24px;
    }
    
    .categories-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 18px;
    }
}
