:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #fff;
}

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

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #ffffff;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.15) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(52, 152, 219, 0.08) 49%, rgba(52, 152, 219, 0.08) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(46, 204, 113, 0.08) 49%, rgba(46, 204, 113, 0.08) 51%, transparent 52%);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

nav {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
}

.nav-left {
    margin-left: 2rem;
    display: flex;
    align-items: center;
}

.nav-right {
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-img {
    height: 5rem;
    width: auto;
    transition: all 0.3s ease;
}

header.scrolled .logo-img {
    height: 3rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
    text-align: center;
    display: inline-block;
    min-width: 100px;
    font-size: 1rem;
}

header.scrolled .nav-links a {
    padding: 0.3rem 0.8rem;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger {
    display: none;
    cursor: pointer;
    margin-left: 2rem;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

main {
    flex: 1;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding-top: 7rem;
}

.hero {
    text-align: center;
    padding: 10rem 0 5rem 0;
    background: url('./img/title-bg.png') center/cover no-repeat;
    margin: -7rem 0 2rem 0;
    position: relative;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    z-index: 2;
}

.hero h1, .hero h2, .hero .cta-button {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0 1rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0 1rem;
    line-height: 1.2;
}

.hero .cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.hero .cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

section {
    padding: 4rem 2rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.apply-section {
    text-align: center;
    padding: 4rem 3rem;
    flex: 1;
    background-color: var(--light-bg);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 2rem 0;
    margin-left: auto;
    margin-right: auto;
}

.apply-section h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.apply-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.isp-partners {
    margin: 2rem 0;
    text-align: center;
}

.isp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    display: none;
}

footer {
    width: 100%;
    margin-top: auto;
    padding: 0;
}

@media screen and (max-width: 768px) {
    .logo-img {
        height: 3rem;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block;
        margin-left: 1rem;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 5px;
        transition: all 0.3s ease;
    }


    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    main {
        padding: 5rem 0;
    }

    .coverage-section,
    .network-section,
    .speed-section {
        min-height: calc(100vh - 150px);
    }

    .apply-section, .contact-section {
        margin: 1rem 0;
        padding: 2rem 1rem;
    }
    
    .contact-info {
        padding: 0 1rem;
    }
}

/* Coverage Page Styles */
.coverage-section {
    text-align: center;
    padding: 4rem 0;
    flex: 1;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coverage-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.search-container {
    display: flex;
    background-color: var(--light-bg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-direction: column;
}

.search-container::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

#address-input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#address-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
    outline: none;
}

#result-container {
    margin: 2rem auto;
}

#success-message, #error-message {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

#success-message a{
    text-decoration: none;
}

#success-message h2, #error-message h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

#success-message h2::after, #error-message h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 3px;
}

#success-message p, #error-message p {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#success-message .submit-button, #error-message .submit-button {
    display: inline-block;
    width: auto;
    padding: 1rem 3rem;
}

#show-interest i {
    margin-right: 0.5rem;
}

@media screen and (max-width: 768px) {
    .search-container {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    #address-input {
        width: 100%;
    }
    
    #success-message, #error-message {
        padding: 1.5rem;
    }
}

/* Form Styles */

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group small {
    color: #666;
    font-size: 0.8rem;
}

/* Mission Section */
.mission-section {
    text-align: center;
    padding: 4rem 0;
}

.mission-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Home Page About Section */
#about.about-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f0f2f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

#about.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

#about.about-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

#about.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
}

#about.about-section p {
    margin: 0 auto 2rem;
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.05);
}

/* About Page About Section */
.about-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f0f2f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem;
    width: 80%;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.about-section h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 3rem;
    position: relative;
    display: inline-block;
}

.about-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
}

.about-section h2 {
    color: #3498db;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #2ecc71;
    border-radius: 3px;
}

.about-content {
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.about-content p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    line-height: 1;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-cta {
    margin-top: 2rem;
}

.about-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.about-cta .cta-button:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Network Status Styles */
.network-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f0f2f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.network-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.status-message {
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.status-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Speed Test Styles */
.speed-section {
    text-align: center;
    padding: 3rem 5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
    margin: 3rem 5rem;
}

.speed-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.speed-test-container {
    margin: 2rem 0;
}

.disclaimer {
    background-color: var(--white);
    padding: 3rem 5rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    position: relative;
}

.disclaimer .gradient-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 2rem;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
}

.disclaimer h2.centered {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.disclaimer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-item {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
}

.disclaimer-item:hover {
    transform: translateY(-5px);
}

.disclaimer-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.disclaimer-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.disclaimer-header h3 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.2rem;
}

.disclaimer-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Banner section */
.banner {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(46, 204, 113, 0.95) 100%);
    padding: 1rem 4rem;
    width: 100%;
    position: relative;
    margin: 0;
}

.banner-content {
    margin: 0;
    display: grid;
    grid-template-columns: 3fr 1fr 3fr;
    gap: 4rem;
    padding: 0;
    position: relative;
    width: 100%;
}

.company-info {
    position: relative;
    text-align: left;
}

.quick-links {
    position: relative;
    text-align: center;
}

.contact-info {
    position: relative;
    text-align: left;
}

.company-info::after, .quick-links::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.company-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.company-info p {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    width: 100%;
    float: right;
    clear: right;
}

.quick-links h3, .contact-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-links a:hover {
    color: var(--white);
    border-bottom: 1px solid var(--white);
    transform: translateX(5px);
}

.contact-info {
    position: relative;
    text-align: left;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-info i {
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.contact-info-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 0;
}

.copyright {
    background-color: var(--light-bg);
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    width: 100%;
}

@media screen and (max-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-info::after, .quick-links::after {
        display: none;
    }

    .company-info, .quick-links, .contact-info {
        text-align: center;
    }

    .company-info p {
        text-align: center;
        float: none;
    }

    .quick-links ul {
        display: block;
        text-align: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

.mission-section, .values-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f0f2f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    width: 80%;
}

.mission-section::before, .values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2ecc71, #3498db);
}

.mission-section h2, .values-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.mission-section h2::after, .values-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #2ecc71;
    border-radius: 3px;
}

.mission-section p {
    margin: 0 auto;
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.1);
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.styled-form {
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.styled-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.styled-form h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.styled-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 3px;
}

.styled-form p {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.styled-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.styled-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.styled-form input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.styled-form input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
    outline: none;
}

.styled-form small {
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.submit-button {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #3498db);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #2ecc71, #3498db);
    transition: opacity 0.5s ease;
}

.submit-button span {
    position: relative;
    z-index: 1;
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.application-form h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.application-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 3px;
}

.application-form p {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .styled-form {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .application-form h2 {
        font-size: 1.5rem;
    }
}

.hidden {
    display: none !important;
} 

@media (max-width: 1024px) {
    .about-section,
    .values-section,
    .speed-section {
      padding: 2rem;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .about-section .text,
    .values-section .text,
    .speed-section .text {
      max-width: 90%;
    }
  
    .about-section .image,
    .values-section .image
    .speed-section .image {
      width: 80%;
      margin: 1rem 0;
    }

    .values-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }
  }

  @media (max-width: 768px) {
    .about-section,
    .values-section,
    .speed-section,
    .disclaimer,
    .mission-section {
      padding: 1.5rem 1rem;
      width: 100%;
    }
  
    .about-section .text,
    .values-section .text,
    .speed-section .text {
      font-size: 0.95rem;
    }
  
    .about-section .image,
    .values-section .image,
    .speed-section .image {
      width: 100%;
    }

    .speed-section {
        margin: 1rem 0;
    }
  }