        /* ========================================= */
        /* ===               CSS                 === */
        /* ========================================= */

        body::-webkit-scrollbar { display: none; }
        
        html, body {
            overscroll-behavior-y: none;
            overscroll-behavior-x: none;
            margin: 0; padding: 0; 
            width: 100%; min-height: 100vh;
            background-color: #1a1a1a; 
            color: #ffffff;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            font-size: 18px;
        }
        header { 
            background: #000000; 
            padding: 0px 0;  
            text-align: center; 
            box-shadow: 0 4px 8px rgba(0,0,0,0.5); 
            z-index: 1000; 
            position: relative; 
        }
        header h1 { 
            color: #ff0000; 
            font-size: 3em;
            margin: 0; 
            font-weight: 900; 
        }
        nav { 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            flex-wrap: wrap; 
            margin-top: 0px;
        }
        nav a { 
            color: #ffffff; 
            text-decoration: none; 
            margin: 0 15px; 
            padding: 10px 20px; 
            border-radius: 5px; 
            transition: background 0.3s; 
            font-size: 1.1em; 
        }
        nav a:hover { 
            background: #333333; 
        }
        .red-link { 
            color: #ff0000; 
            font-weight: bold; 
        }
        .lang-switch {
            position: absolute; 
            top: 20px;      
            right: 30px;       
            display: flex;
            align-items: center;
            text-decoration: none;
            margin: 0;         
            z-index: 1010;      
        }
        .flag-icon { 
            width: 35px; 
            height: auto; 
            border-radius: 4px; 
            border: 1px solid #333; 
        }
        
        /* === MATRIX SECTION === */
        #matrix-section { 
            position: relative; 
            width: 100%; 
            height: 89vh; 
            overflow: hidden; 
            background: #000; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            align-items: center; 
            border-bottom: 1px solid #333; 
        }
        canvas { 
            position: absolute; 
            top: 0; 
            left: 0; 
            z-index: 1; 
            width: 100%; 
            height: 100%; 
            filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4)); 
        }
        .overlay-content { 
            position: relative; 
            z-index: 10; 
            text-align: center; 
            pointer-events: none; 
            width: 100%; 
        }        
        
        /* === NAPIS ===  */
        .main-title { 
            font-family: 'Arial Black', 'Impact', sans-serif; 
            font-size: 9vw; 
            line-height: 1; 
            margin: 0; 
            color: #fff; 
            text-transform: uppercase; 
            text-shadow: 0 0 20px rgba(0,0,0,0.8); 
            mix-blend-mode: exclusion; 
        }

        .main-title-extra { 
        
            font-family: 'Arial Black', 'Impact', sans-serif; 
            font-size: 9vw; 
            line-height: 1; 
            margin: 0; 
            color: #fff; 
            text-transform: uppercase; 
            text-shadow: 0 0 20px rgba(0,0,0,0.8); 
            mix-blend-mode: exclusion; 
        }

        .sub-title { 
            font-size: 5em; 
            font-weight: bold; 
            margin-top: 10px; 
            color: #ffffff; 
            text-shadow: 0 0 10px #000; 
            animation: fadeInUp 1.5s ease-out; 
        }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* === SYMULATOR === */
        main { 
            background-color: #000; 
            padding: 0px 0px; 
            text-align: center; 
            max-width: 100vw; 
            overflow: hidden; 
        }
        .screen-simulator {
            width: 1920px; 
            max-width: 100%; 
            height: 700px; 
            background: url('Wallapaper.png') center/cover; 
            background: auto; 
            position: relative; 
            margin: 10 auto 40px auto;
            
            border-top: 12px solid #000; 
            border-left: 12px solid #000; 
            border-right: 12px solid #000;
            border-radius: 12px 12px 0 0; 
        
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0,0,0,0.5) inset;
        }
        .screen-simulator.blur-mode .blur-layer-overlay { opacity: 1; }

    /* === NOWA SEKCJA: JAK TO DZIAŁA === */
        .how-it-works-section { 
            margin: 0 auto 80px auto; 
            text-align: center; 
            width: 100%; 
        }
        .how-it-works-wrapper {
            max-width: 1920px; 
            margin: 0 auto;
            padding: 0 20px; 
            box-sizing: border-box;
        }
        .how-it-works-img {
            width: 100%;
            height: auto; 
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
            display: block;
        }
        .mac-menu-bar {
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 32px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0));
            z-index: 200; 
            display: flex; 
            justify-content: flex-end; 
            align-items: center;
            padding: 0 20px; 
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, sans-serif; 
            font-size: 13px; 
            font-weight: 500; 
            user-select: none;
        }
        .menu-right-group { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
        }
        .app-status-group { 
            display: flex; 
            align-items: center; 
            margin-right: 10px; 
            color: #00D95A; 
            font-weight: 600; 
            font-size: 13px; 
            letter-spacing: 0.3px; 
        }
        .camera-icon-badge { 
            background-color: #00D95A; 
            border-radius: 4px; 
            width: 26px; 
            height: 18px; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            margin-right: 8px; 
        }
        .camera-icon-badge svg { 
            fill: #ffffff; 
            width: 14px; 
            height: 14px; 
        }
        .clock-text { 
            color: #fff; 
            font-variant-numeric: tabular-nums; 
            margin-left: 5px; 
            font-weight: 400; 
        }

        .privacy-blackout-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #000000; opacity: 0; z-index: 250; pointer-events: none; }
        .mac-notch { width: 180px; height: 32px; background: #000; position: absolute; top: 0; left: 50%; transform: translateX(-50%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; z-index: 300; display: flex; justify-content: flex-end; align-items: center; padding-right: 30px; box-sizing: border-box; }
        .camera-led { width: 6px; height: 6px; background-color: #3cc74e; border-radius: 50%; box-shadow: 0 0 8px #3cc74e; }
        .screen-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)); pointer-events: none; }

        
        /* === BANNERY === */
        .banner-main { position: absolute; left: 50%; transform: translateX(-50%); width: 280px; height: 60px; display: flex; justify-content: center; align-items: flex-start; padding-top: 35px; box-sizing: border-box; font-weight: bold; font-size: 1.1em; border-radius: 0 0 20px 20px; z-index: 150; top: -100px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
        .banner-sub { position: absolute; left: 50%; transform: translateX(-50%); width: 280px; height: 40px; display: flex; justify-content: center; align-items: flex-start; padding-top: 15px; box-sizing: border-box; font-weight: bold; font-size: 1.1em; border-radius: 0 0 25px 25px; z-index: 140; top: -100px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); text-transform: uppercase; }
        .alert-narrow { height: 44px; width: 205px; padding: 0; border-radius: 0 0 15px 15px; }

        .bg-purple { background-color: #bf5af2; color: #000; }
        .bg-yellow { background-color: #ffcc00; color: #000; }
        .bg-red { background-color: #ff3b30; color: #000; }
        .bg-green { background-color: #28cd41; color: #000; }

        /* === ANIMACJE 36s === */
        .anim-element { animation-duration: 36s; animation-iteration-count: infinite; animation-timing-function: linear; }
        .anim-main-1 { animation-name: cycleMain1; } 
        .anim-sub-1 { animation-name: cycleSub1; }
        .anim-main-2 { animation-name: cycleMain2; } 
        .anim-sub-2 { animation-name: cycleSub2; }
        .anim-single-3 { animation-name: cycleSingle3; }
        .privacy-blackout-layer { animation-name: blackoutCycle; }

        @keyframes cycleMain1 { 0% { top: -100px; } 2% { top: 0px; } 14.6% { top: 0px; } 16.6% { top: -100px; } 100% { top: -100px; } }
        @keyframes cycleSub1 { 0% { top: -100px; } 2% { top: -100px; } 4% { top: 45px; } 14.6% { top: 45px; } 16.6% { top: -100px; } 100% { top: -100px; } }
        @keyframes cycleMain2 { 0%, 16.6% { top: -100px; } 18.6% { top: 0px; } 31.3% { top: 0px; } 33.3% { top: -100px; } 100% { top: -100px; } }
        @keyframes cycleSub2 { 0%, 18.6% { top: -100px; } 20.6% { top: 45px; } 31.3% { top: 45px; } 33.3% { top: -100px; } 100% { top: -100px; } }
        @keyframes cycleSingle3 { 0%, 33.3% { top: -100px; } 35.3% { top: 0px; } 48% { top: 0px; } 50% { top: -100px; } 100% { top: -100px; } }
        @keyframes blackoutCycle { 0%, 66.6% { opacity: 0; } 68% { opacity: 1; } 81.3% { opacity: 1; } 83.3% { opacity: 0; } 100% { opacity: 0; } }

        /* === Adnotacja Animacja ===*/
        .animation-note {
            font-size: 12px;          
            color: #666;            
            text-align: right;       
            margin-top: 10px;         
            margin-bottom: 20px;       
            font-weight: 500;
            letter-spacing: 1.5px;
            opacity: 0.7;
        }
        
        /* === UI STATUS ==== */
        #mode-description { 
            font-size: 3em; 
            font-weight: 900; 
            margin-bottom: 20px; 

            min-height: 2.5em;     
            display: flex;       
            align-items: center;    
            justify-content: center;
    
            opacity: 0.9; 
            max-width: 1000px; 
            margin-left: auto; 
            margin-right: auto; 
        }
        
        #animation-status-label { font-size: 1.0em; font-weight: 600; color: #28cd41; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 2px; min-height: 1.5em; transition: color 0.3s ease; }  

        .controls-wrapper { 
            display: flex; 
            justify-content: center; 
            width: fit-content; 
            margin: 0 auto 0px auto; 
            gap: 8px; 
            background: rgba(255, 255, 255, 0.05); 
            padding: 8px; 
            border-radius: 50px; 
            border: 1px solid rgba(255, 255, 255, 0.1); 
        }
        .control-btn { background: transparent; border: none; color: #888; padding: 12px 30px; border-radius: 40px; cursor: pointer; font-weight: 600; font-size: 1.1em; transition: 0.3s; }
        .control-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
        
        .control-btn.active-purple { background: #bf5af2; color: #fff; }
        .control-btn.active-red { background: #ff3b30; color: #fff; }
        .control-btn.active-green { background: #28cd41; color: #000; }
        .control-btn.active-black { background: #ffffff; color: #000; }
        .control-btn.active-blue { background: #00d9ff; color: #000; }

        /* === SEKCE SPLIT  === */
        .section-fix { width: 100%; background-color: #000 !important; margin-top: -1px; padding: 120px 0; display: flex; justify-content: center; overflow: hidden; border: none !important; }
        .container-fix { max-width: 1400px; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 50px; gap: 60px; }
        
        /* === Widok sekcji ustawień === */
        .container-settings-fix { max-width: 1863px; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; gap: 60px; }

        
        .text-block-fix { flex: 1; text-align: left; }
        .text-block-fix h2 { font-size: 4em; line-height: 1.05; margin-bottom: 25px; font-weight: 900; background: linear-gradient(to right, #fff, #999); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .text-block-fix p { font-size: 1.3em; color: #b1b1b6; line-height: 1.7; }
        .image-block-fix { flex: 1.5; display: flex; justify-content: center; align-items: center; }
        .img-responsive { width: 100%; max-width: 850px; height: auto; object-fit: contain; filter: none !important; transition: transform 0.5s; }
        .push-right { margin-right: -10%; }
        .push-left { margin-left: -10%; }
        
        .appstore-link { display: inline-block; background: #007bff; color: #fff; padding: 18px 40px; text-decoration: none; border-radius: 12px; font-weight: 700; font-size: 1.1em; transition: 0.3s; margin-top: 25px; }
        .appstore-link:hover { background: #0056b3; transform: translateY(-3px); }

        
        /* ==== SEKCJA full length  === */
        
        .full-width-diagram {
            flex-direction: column !important;
            text-align: center !important;   
        }
        .full-width-diagram .text-block-fix {
            padding-right: 0 !important;     
            margin-bottom: 40px;            
            width: 100%;
        }
        .full-width-diagram .image-block-fix {
            width: 100%;
            justify-content: center !important;
        }
        .full-width-diagram .img-responsive {
            margin-right: 0 !important;       
            max-width: 100%;                 
            width: auto;                     
        }
        .section-full-width {
            flex-direction: column !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        .full-width-image-container {
            width: 100vw; 
            overflow: hidden;
            display: flex;
            justify-content: center;
        }
        .img-full-bleed {
            width: 100%;
            height: auto;
            display: block;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
            filter: none !important;
        }
        @media (max-width: 1024px) {
            .img-full-bleed {
            width: 150%; 
            margin-left: -25%;
        }
        }
        
        /* === Modele === */
        
.tech-specs-section {
    background: #050505 !important;
    padding: 10px 0;
}
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}
.tech-card {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #1a1a1a;
    text-align: left;
    transition: transform 0.3s ease;
}
.tech-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}
.tech-icon {
    font-size: 24px;
    color: #ff3b30;
    margin-bottom: 20px;
    font-weight: bold;
}
.tech-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #fff;
}
.tech-card p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
}
.tech-list {
    list-style: none;
    padding: 0;
}
.tech-list li {
    color: #b1b1b6;
    margin-bottom: 12px;
    font-size: 0.95em;
    padding-left: 20px;
    position: relative;
}
.tech-list li::before {
    content: "•";
    color: #ff3b30;
    position: absolute;
    left: 0;
}
@media (max-width: 900px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}
        /* === Ustawienia === */
        .customize-section {
    background-color: #000;
    color: #fff;
    padding: 100px 5%;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

.showcase-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.text-content {
    flex: 0 0 35%;
}

.main-title {
    font-size: 80px;
    line-height: 0.9;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.feature-item {
    margin-bottom: 40px;
}

.feature-item h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.arrow {
    color: #ff3b30; 
    margin-right: 15px;
    font-size: 18px;
}

.feature-item p {
    color: #86868b; 
    font-size: 16px;
    line-height: 1.5;
}

.notch-preview {
    margin-top: 20px;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
}

.notch-red {
    background-color: #ff453a;
    color: #000;
    padding: 8px;
}

.notch-green {
    background-color: #32d74b;
    color: #000;
    padding: 4px;
}

.notch-orange-big {
    background-color: #FF9500;
    color: #000;
    padding: 4px;
}
.notch-orange-small {
    background-color: #FF9500;
    color: #000;
    padding: 4px;
}

.ui-mockup {
    flex: 0 0 60%;
    position: relative;
}

.ui-mockup img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}
        
        /* === FAQ === */
        .faq-section { max-width: 1000px; margin: 80px auto; padding: 0 30px; }
        .faq-section h3 { font-size: 3em; color: #ff0000; margin-bottom: 50px; font-weight: 900; text-align: center; }
        details { background: #080808; margin-bottom: 20px; border-radius: 16px; padding: 20px; border: 1px solid #111; }
        summary { cursor: pointer; font-weight: 700; font-size: 1.3em; color: #fff; list-style: none; }
        details p { margin-top: 20px; color: #aaa; line-height: 1.7; }

        footer { background: #000; text-align: center; padding: 50px 0; border-top: 1px solid #1a1a1a; color: #666; }

        @media (max-width: 1100px) {
            .container-fix { flex-direction: column !important; text-align: center; }
            .reverse-mobile { flex-direction: column-reverse !important; }
            .img-responsive { margin: 0 !important; max-width: 100%; }
            .main-title { font-size: 0 vw; }
        }
        
        /* Wyjaśnienie ustaiweń oraz czemu my*/
        
        /* Styl dla tabeli */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 1.1em;
}
.comparison-table th, .comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #222;
    text-align: left;
}
.comparison-table th { color: #555; text-transform: uppercase; font-size: 0.8em; }
.comparison-table td.highlight {
    color: #ff3b30;
    font-weight: bold;
    background: rgba(255, 59, 48, 0.05);
}

/* Styl dla siatki ustawień */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}
.setting-item {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid #1a1a1a;
}
.setting-item h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4em;
}
.setting-item p {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.6;
}
        .settings-detailed {
    background: #080808 !important;
    padding: 100px 0;
}

.settings-features {
    margin-top: 40px;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-point .arrow {
    color: #ff3b30;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1;
}

.feature-point strong {
    display: block;
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.feature-point p {
    font-size: 1em !important;
    color: #888 !important;
}
/* === OKNO USTAWIEŃ === */        
.section-settings-view {
    padding: 100px 0 !important; 
    background: #000;
    width: 100vw;
    height: auto; 
    min-height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: none !important;
}

.settings-contain-wrapper {
    flex-direction: column;
    align-items: center;
}

.settings-mockup-container {
    position: relative;
    width: 100%;
    max-width: 1920px; 
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.settings-img-contained {
    width: 100%;
    height: auto;
    object-fit: contain; 
    object-position: center;
    border-radius: 16px; 
    border: 1px solid #1a1a1a; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.8); 
    z-index: 10;
}

.mockup-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 40px;
    background: rgba(255, 59, 48, 0.15); 
    filter: blur(40px);
    border-radius: 50%;
    z-index: 1;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 1024px) {
    .section-settings-view {
        padding: 50px 20px !important; /* Mniejsze marginesy na tabletach */
    }
}
        /* === Obrazek Ustawien === */
        
        .settings-full-view {
    background: #000;
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.settings-container {
    width: 100%;    
    max-width: 1920px; 
    padding: 0 20px; 
}

.settings-full-img {
    width: 100%; 
    height: auto;
    display: block;
    border-radius: 12px; 
    image-rendering: -webkit-optimize-contrast; 
}
        
        /* === Kalibracaja === */

        .customize-section {
    background-color: #000;
    color: #fff;
    padding: 100px 5%;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

.showcase-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}


.customize-section.reversed  {
    flex-direction: row-reverse;
}

.text-content {
    flex: 0 0 35%;
    hyphens: auto;
}

.customize-section.reversed .text-content {
    margin-left: 5%; 
}

.main-title {
    font-size: 80px;
    line-height: 0.9;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.feature-item h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.arrow {
    color: #ff3b30;
    margin-right: 15px;
}

.feature-item p {
    color: #86868b;
    font-size: 16px;
    line-height: 1.6;
}

.notch-preview {
    margin-top: 20px;
    width: 220px;
    border-radius: 14px;
    overflow: hidden;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.notch-red {
    background-color: #ff453a;
    color: #000;
    padding: 10px;
}

.notch-green {
    background-color: #32d74b;
    color: #000;
    padding: 6px;
}

.ui-mockup {
    flex: 0 0 55%; 
    position: relative;
}

.ui-mockup img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}
        


/* mail */


.contact-section {
    background-color: #000;
    padding: 100px 5%;
    text-align: center;
    border-top: 1px solid #222;
}

.contact-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-container p {
    color: #86868b;
    margin-bottom: 40px;
}

/* Styl przycisku email */
.email-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: transform 0.2s;
}

.email-button:hover {
    transform: scale(1.05);
    background-color: #32d74b; 
}

/* Styl formularza */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
}

.contact-form button {
    padding: 15px;
    background: #007AFF; 
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}





        
        /*=============*/
        /* END OF CSS */
        /*=============*/

