/* Reset and Base Styles */

body *{
    cursor: default;
}

body .contact-label{
    cursor: pointer;
    text-decoration: none;
}

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

@font-face {
  font-family: "FordAntenna-Regular";
  src: url("../fonts/FordAntenna-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FordAntenna-Medium";
  src: url("../fonts/FordAntenna-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FordAntenna-Bold";
  src: url("../fonts/FordAntenna-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
    font-family: 'FordAntenna-Regular';
    background-color: #f5f5f5;
    color: #1A1A1A;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Main Card Styles */
.main-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

/* Logo Styles */
.logo {
    width: 326px;
    height: 80px;
    display: block;
    background: url(../img/servion-logo.png) center center no-repeat;
    background-size: cover;
}

/* Typography */
.main-title {
    font-family: "FordAntenna-Bold";
    margin-top: 14px;
    font-size: 64px;
    color: #1A1A1A;
    line-height: 110%;
}

.main-link {
    font-family: "FordAntenna-Bold";
    display: inline-block;
    font-size: 64px;
    color: #2E24FD;
    text-decoration: none;
    line-height: 110%;
    transition: opacity 0.3s ease;
}

.main-link:hover {
    opacity: 0.8;
}

.subtitle {
    font-family: "FordAntenna-Medium";
    font-size: 24px;
    color: #000;
    margin-top: 34px;
    line-height: 120%;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: space-between;
    max-width: 828px;
    width: 100%;
    margin-top: 55px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: center;
    max-width: 238px;
    width: 100%;
}

.contact-label {
    font-size: 13px;
    color: #8e8e8e;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 0 20px;
}

.features-title {
    font-size: 24px;
    font-family: "FordAntenna-Medium";
    color: #000;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 24px;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #FFFFFF;
    border: 3px solid #FFFFFF;
    border-radius: 50px;
    padding: 9px 18px;
}

.bullet {
    color: #1A1A1A;
    font-size: 20px;
    line-height: 1.4;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.5;
}

/* Responsive Design */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    body {
        padding: 15px 15px 60px;
    }

    .main-card {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .main-title,
    .main-link {
        font-size: 32px;
    }

    .subtitle {
        font-size: 15px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-title {
        font-size: 18px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .main-card {
        padding: 30px 20px;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 20px;
        width: 28px;
        height: 28px;
    }

    .logo {
        max-width: 80vw;
        width: 100%;
        background-size: contain;
        gap: 8px;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 18px;
    }

    .main-title,
    .main-link {
        font-size: 26px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .subtitle br {
        display: none;
    }

    .subtitle span{
        margin-left: 3px;
    }

    .contact-info {
        padding-top: 25px;
        gap: 18px;
    }

    .contact-label {
        font-size: 12px;
    }

    .features-section {
        padding: 0 10px;
    }

    .features-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-column {
        gap: 15px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .bullet {
        font-size: 18px;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .main-card {
        padding: 25px 15px;
    }


    .subtitle {
        font-size: 13px;
    }

    .contact-label {
        font-size: 11px;
    }

    .feature-item p {
        font-size: 13px;
    }
}