:root {
    --primary-color: #4a6bff;
    --primary-dark: #3a5bef;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --accent-color: #4a6bff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Demo Button */
.demo-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
}

.demo-button:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #6a5acd);
    color: var(--white);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

/* Profile Picture */
.profile-pic {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid var(--white);
    margin: 0 auto 1.5rem;
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80vh;
    cursor: pointer;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Form Section */
.form-section {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 107, 255, 0.2);
    background-color: var(--white);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.75rem;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.75rem;
}

.button-center {
    text-align: center;
    margin-top: 1.5rem;
}

.submit-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Color Picker */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0.5rem auto;
    justify-content: center;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border: 2px solid var(--accent-color);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.selected-color-name {
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Link Entry */
.link-entry {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.link-entry .select-wrapper {
    flex: 1;
}

.link-entry input {
    flex: 2;
}

/* Main Content */
main {
    padding: 3rem 0;
}

.policy-section {
    background-color: var(--white);
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.policy-section h2 {
    margin: 1.5rem 0 1rem;
    color: var(--primary-dark);
}

.policy-section p {
    margin-bottom: 1rem;
}

.policy-section ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.policy-section ul {
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.pricing-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #ddd;
}

.pricing-table th {
    padding: 1.2rem;
    text-align: center;
    border: 1px solid #ddd;
}

.pricing-table td {
    padding: 1.2rem;
    text-align: left;
    border: 1px solid #ddd;
}


.pricing-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background-color: var(--white);
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

footer p {
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    nav ul {
        margin-top: 1rem;
    }
    nav ul li {
        margin: 0 0.7rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .link-entry {
        flex-direction: column;
        gap: 0.5rem;
    }
    .link-entry .select-wrapper,
    .link-entry input {
        width: 100%;
    }
}

/* Custom Dropdown Arrow */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a6bff' width='24px' height='24px'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px !important;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: var(--text-color);
    font-size: 1rem;
    height: 44px;
}

/* For Firefox */
select::-ms-expand {
    display: none;
}