/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #F4F4F6;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: #1F2937;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 600;
}

.cta-button-container {
    padding:10px;
}

.cta-button {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 600;
    background: #4F46E5;
    padding: 8px 16px;
    border-radius: 5px;
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 20px 50px 20px;
    background: linear-gradient(120deg, #4F46E5, #1F2937);
    color: white;
}

.hero.mini {
    padding: 100px 20px 25px 20px;
}

.hero .buttons {
    margin-top: 20px;
}

.hero .btn {
    padding: 12px 24px;
    display: inline-block;
    margin: 10px;
    border-radius: 5px;
    font-size: 18px;
}

.hero .btn.primary {
    background: white;
    color: #4F46E5;
    text-decoration: none;
}

.hero .btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
}

/* Content Sections */
.content {
    padding: 60px 20px;
    text-align: center;
}

/* Card Style */
.card {
    background: white;
    color: #1F2937;
    max-width: 800px;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.image {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 15px;
}

/* Dark Section */
.content.dark {
    background: #e7e9f0;
    color: white;
}

/* Features List */
.details-list {
    list-style: none;
    padding: 5px;
    margin-left:5px;
    text-align:left;
    line-height: 1.5;
}
.details-list li {
    font-size: 18px;
    margin-bottom: 8px;
}
.details-list li ul {
    margin-left: 20px;
}

p {
    font-size: 18px;
}

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

.language-selector {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.language-selector .lang {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.language-selector .lang:hover {
    background: rgba(255, 255, 255, 0.2);
}

table {
    width: 100%;
    background-color: white;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form label {
    font-weight: bold;
    padding-top: 5px;
}

.input {
    padding: 10px;
    border: 1px solid #9fa1ad;
    border-radius: 5px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 8px 15px;
    margin: 10px auto;
    background-color: #33729c;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.back-link {
    padding: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    #comparison-table .card {
        overflow-x: auto;
    }
    .nav-links {
        display: none;
    }
}

.product-card {
    background: white;
    color: #1F2937;
    max-width: 800px;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}