:root {
    --corporate-blue: #3182ce;
    --light-blue: #f8fafd;
    --white: #ffffff;
    --dark-text: #2c3e50;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    --wave-color: #f8fafd;
}

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

body {
    background-color: var(--white);
    background-image: linear-gradient(
        to bottom,
        var(--white) 0%,
        var(--light-blue) 100%
    );
    color: var(--dark-text);
    line-height: 1.8;
}

header {
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--corporate-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo svg {
    vertical-align: middle;
    fill: var(--white);
}

.logo span {
    display: inline-block;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 2rem;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-section {
    margin-bottom: 4rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--corporate-blue);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-section {
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-width: 600px;
    margin: 0 auto;
}

.button {
    background: var(--corporate-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background: var(--corporate-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.price {
    font-size: 3.5rem;
    margin: 1rem 0;
    font-weight: 700;
    color: var(--corporate-blue);
    word-break: break-word;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.features-list li {
    margin: 0.5rem 0;
}

.features-list li::before {
    content: none;
}

.languages-section {
    margin: 2rem auto 4rem;
    max-width: 1000px;
    padding: 0 1rem;
}

.languages-image {
    width: 100%;
    max-width: 80%;
    width: 600px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.languages-heading {
    margin-top: 4rem;
}

.languages-table {
    margin: 3rem auto;
    max-width: 800px;
}

.full-width-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.full-width-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.content-spacing {
    margin: 3rem 0;
}

.section-heading {
    margin: 2rem 0;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #3182ce;
}

/* SVG Styles */
.card, .desk-icon, .terminal-icon, .phone, .tablet, .laptop, .desktop,
svg path, svg line, svg rect, svg circle, svg polyline {
    stroke: #3182ce !important;
    stroke-width: 1.5;
    fill: none;
}

/* Header logo SVG styles */
.logo svg path,
.logo svg line,
.logo svg rect {
    stroke: var(--white) !important;
}

.logo .card {
    stroke: var(--white) !important;
}

/* Updated navbar SVG styles with higher specificity and fill properties */
.navbar svg,
.navbar svg *,
.navbar-brand svg,
.navbar-brand svg * {
    stroke: var(--white) !important;
    fill: var(--white) !important;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 2px #3182ce); }
    50% { filter: drop-shadow(0 0 4px #3182ce); }
    100% { filter: drop-shadow(0 0 2px #3182ce); }
}

.logo-svg {
    animation: glow 2s ease-in-out infinite;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0 1rem;
        font-size: 0.9rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .pricing-section {
        margin: 1rem;
        padding: 2rem;
    }

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

    .button {
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }

    .languages-table {
        overflow-x: auto;
        display: block;
    }

    .full-width-table {
        min-width: 500px;
    }

    .full-width-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .price {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        margin: 0 0.5rem;
    }

    .button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .price {
        font-size: 2rem;
    }
}

.language-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--white);
    border: 1px solid var(--corporate-blue);
    border-radius: 8px;
    text-decoration: none;
    color: black;
    transition: transform 0.2s, background-color 0.2s;
    height: 80px;
    width: 80px;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.language-card:hover {
    transform: translateY(-5px);
    background-color: rgba(49, 130, 206, 0.1);
}

.lock-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    opacity: 1;
    z-index: 10;
    color: var(--corporate-blue) !important;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    justify-items: center;
    padding: 2rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #3182ce;
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    box-sizing: border-box;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    height: 100%;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-profile {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.navbar-brand:hover, 
.nav-profile:hover {
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links.active {
    display: flex;
    background-color: #3182ce;
    z-index: 1000;
}

.nav-auth {
    text-decoration: none;
    color: white;
}

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

.pricing-box {
    background: var(--white);
    border: 2px solid var(--corporate-blue);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-box h3 {
    margin: 0 0 15px 0;
    color: var(--dark-text);
}

.pricing-box .price {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
    color: var(--corporate-blue);
}

.pricing-box .period {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.purchase-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--corporate-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.purchase-btn:hover {
    background-color: #2c5282;
}

/* Footer Styles */
.footer {
    background-color: var(--corporate-blue);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-nav {
    margin-top: 0.5rem;
}

.footer-nav-row {
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav-row a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav-row a:hover {
    opacity: 0.8;
}

.scc-benefits-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.scc-benefits-table th,
.scc-benefits-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.scc-benefits-table th {
    background-color: var(--corporate-blue);
    color: var(--white);
    font-weight: 600;
}

.scc-benefits-table tr:hover {
    background-color: var(--light-blue);
}

.scc-benefits-table ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.scc-benefits-table li {
    margin: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.scc-benefits-table li:before {
    content: "•";
    color: var(--corporate-blue);
    position: absolute;
    left: 0;
}

@media screen and (max-width: 768px) {
    .scc-benefits-table {
        display: block;
        overflow-x: auto;
    }
    
    .scc-benefits-table th,
    .scc-benefits-table td {
        padding: 1rem;
    }
}

/* Form Styling */
#securecodecards-contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#securecodecards-contact-form .form-group {
    margin-bottom: 1.5rem;
}

#securecodecards-contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
    text-align: left;
}

#securecodecards-contact-form .form-group input[type="text"],
#securecodecards-contact-form .form-group input[type="email"],
#securecodecards-contact-form .form-group input[type="tel"],
#securecodecards-contact-form .form-group select,
#securecodecards-contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    color: var(--dark-text);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#securecodecards-contact-form .form-group input:focus,
#securecodecards-contact-form .form-group select:focus,
#securecodecards-contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--corporate-blue);
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.1);
}

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

#securecodecards-contact-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#securecodecards-contact-form .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--corporate-blue);
}

#securecodecards-contact-form .checkbox-group label {
    margin-bottom: 0;
}

#securecodecards-contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem 2.5rem;
    background: var(--corporate-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#submit-button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.consultation-info {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 2rem;
    color: var(--dark-text);
}

/* Form validation styling */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e53e3e;
}

/* Responsive adjustments for form */
@media screen and (max-width: 768px) {
    #securecodecards-contact-form {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Mobile Responsiveness Updates */
@media screen and (max-width: 768px) {
    header {
        padding: 1rem 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--corporate-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin: 0;
    }

    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}
}
