/* =========================================================
   PEAKWAY ENERGY SOLUTIONS LTD
   PROFESSIONAL WEBSITE STYLESHEET
   ========================================================= */


/* =========================================================
   1. GLOBAL SETTINGS
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #26352b;
    background: #ffffff;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   2. HEADER
   ========================================================= */

header {
    background: #ffffff;
    border-bottom: 1px solid #e7ece8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-content {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    color: #126b3a;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
    flex-shrink: 0;
}

.logo span {
    display: block;
    font-size: 27px;
}

.logo small {
    display: block;
    color: #b68a24;
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 5px;
}


/* NAVIGATION */

nav {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

nav a {
    color: #304239;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 13px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #126b3a;
    background: #f0f7f2;
}

nav a.active {
    color: #ffffff;
    background: #126b3a;
}


/* =========================================================
   3. HERO SECTIONS
   ========================================================= */

.hero {
    min-height: 570px;
    position: relative;
    background:
        linear-gradient(
            120deg,
            #0d4f2d,
            #126b3a 55%,
            #1b8050
        );
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    right: -150px;
    top: -150px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(182, 138, 36, 0.10);
    left: -120px;
    bottom: -150px;
}

.hero-overlay {
    min-height: 570px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #ffffff;
    max-width: 850px;
    padding: 90px 0;
}

.hero-tag,
.section-label {
    display: inline-block;
    color: #c99b38;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    max-width: 720px;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}


/* =========================================================
   4. BUTTONS
   ========================================================= */

.btn {
    display: inline-block;
    background: #c99b38;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #c99b38;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background: #ffffff;
    color: #126b3a;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #126b3a;
}


/* =========================================================
   5. INTRODUCTION SECTIONS
   ========================================================= */

.intro {
    padding: 90px 0;
    background: #ffffff;
}

.intro .container {
    max-width: 950px;
}

.intro h2 {
    color: #164b2e;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
    margin-bottom: 25px;
}

.intro p {
    color: #5a675f;
    font-size: 17px;
    margin-bottom: 15px;
}


/* =========================================================
   6. SECTION HEADINGS
   ========================================================= */

.section-heading {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    color: #164b2e;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-heading p {
    color: #66736a;
    font-size: 16px;
}


/* =========================================================
   7. SERVICES
   ========================================================= */

.services {
    padding: 90px 0;
    background: #f5f8f5;
}

.services h2 {
    text-align: center;
    color: #164b2e;
    font-size: 42px;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e9e4;
    border-radius: 10px;
    padding: 32px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(20, 60, 35, 0.04);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(20, 60, 35, 0.10);
    border-color: #c99b38;
}

.service-card h3 {
    color: #164b2e;
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #66736a;
    font-size: 15px;
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #eaf4ed;
    color: #126b3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
}


/* =========================================================
   8. PARTNERS
   ========================================================= */

.partners {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.partners h2 {
    color: #164b2e;
    font-size: 38px;
    margin-bottom: 35px;
}

.partner-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-list span {
    padding: 12px 22px;
    background: #f2f6f3;
    color: #315340;
    border: 1px solid #dce6df;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}


/* =========================================================
   9. CONTACT PREVIEW
   ========================================================= */

.contact-preview {
    padding: 90px 0;
    background: #126b3a;
    color: #ffffff;
}

.contact-preview h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-preview p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 8px;
}


/* =========================================================
   10. PRODUCTS PAGE
   ========================================================= */

.products-section {
    padding: 90px 0;
    background: #ffffff;
}

.light-section {
    background: #f5f8f5;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e9e4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(20, 60, 35, 0.06);
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(20, 60, 35, 0.13);
}

.product-image {
    height: 320px;
    overflow: hidden;
    background: #e9efeb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 30px;
}

.product-category {
    color: #b08325;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.product-content h3 {
    color: #164b2e;
    font-size: 24px;
    margin: 10px 0 12px;
}

.product-content p {
    color: #66736a;
    font-size: 15px;
}

.product-link {
    display: inline-block;
    color: #126b3a;
    font-weight: 700;
    margin-top: 18px;
}

.product-link:hover {
    color: #b08325;
}


/* =========================================================
   11. WHY PEAKWAY SECTION
   ========================================================= */

.why-section {
    padding: 90px 0;
    background: #ffffff;
}


/* =========================================================
   12. PROJECTS PAGE
   ========================================================= */

.project-section {
    padding: 95px 0;
    background: #ffffff;
}

.project-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.project-layout.reverse {
    grid-template-columns: 0.8fr 1.4fr;
}

.project-layout.reverse .project-text {
    order: 2;
}

.project-layout.reverse .project-box {
    order: 1;
}

.project-text h2 {
    color: #164b2e;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.2;
    margin-bottom: 22px;
}

.project-text p {
    color: #66736a;
    font-size: 16px;
    margin-bottom: 17px;
}

.project-box {
    background:
        linear-gradient(
            145deg,
            #126b3a,
            #0d4f2d
        );
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 14px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(18, 107, 58, 0.18);
    position: relative;
    overflow: hidden;
}

.project-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    right: -60px;
    bottom: -60px;
}

.project-number {
    color: #c99b38;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.project-box h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.project-box p {
    color: rgba(255, 255, 255, 0.82);
}

.project-highlight {
    display: inline-flex;
    flex-direction: column;
    margin: 20px 15px 10px 0;
    padding: 18px 22px;
    background: #f5f8f5;
    border-left: 4px solid #c99b38;
    min-width: 180px;
}

.project-highlight strong {
    color: #126b3a;
    font-size: 30px;
    line-height: 1;
}

.project-highlight span {
    color: #657168;
    font-size: 12px;
    margin-top: 7px;
}

.project-list {
    margin-top: 20px;
    padding-left: 20px;
}

.project-list li {
    color: #56655c;
    margin-bottom: 8px;
    padding-left: 5px;
}

.project-list li::marker {
    color: #c99b38;
}


/* =========================================================
   13. IMPACT SECTION
   ========================================================= */

.impact-section {
    padding: 90px 0;
    background: #f5f8f5;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.impact-card {
    background: #ffffff;
    border: 1px solid #dfe8e2;
    padding: 35px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(20, 60, 35, 0.04);
}

.impact-card strong {
    display: block;
    color: #126b3a;
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.impact-card span {
    color: #647169;
    font-size: 14px;
}


/* =========================================================
   14. CTA SECTION
   ========================================================= */

.cta-section {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            #0d4f2d,
            #126b3a
        );
    text-align: center;
    color: #ffffff;
}

.cta-section .container {
    max-width: 850px;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
}


/* =========================================================
   15. FOOTER
   ========================================================= */

footer {
    background: #10271a;
    color: #ffffff;
    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 45px;
}

.footer-grid h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-grid p {
    color: #b8c5bc;
    font-size: 14px;
    line-height: 1.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    color: #829289;
    font-size: 13px;
}


/* =========================================================
   16. ABOUT PAGE
   ========================================================= */

.about-section {
    padding: 90px 0;
}

.about-section h2 {
    color: #164b2e;
    font-size: 40px;
    margin-bottom: 20px;
}

.about-section p {
    color: #657168;
    margin-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.about-card {
    padding: 35px;
    background: #f5f8f5;
    border-left: 4px solid #126b3a;
    border-radius: 8px;
}

.about-card h3 {
    color: #164b2e;
    margin-bottom: 12px;
}


/* =========================================================
   17. GENERAL TABLES / INFORMATION BOXES
   ========================================================= */

.info-box {
    padding: 30px;
    background: #f5f8f5;
    border-radius: 10px;
    border-left: 4px solid #c99b38;
}

.info-box h3 {
    color: #164b2e;
    margin-bottom: 10px;
}


/* =========================================================
   18. TEXT UTILITIES
   ========================================================= */

.text-center {
    text-align: center;
}

.text-green {
    color: #126b3a;
}

.text-gold {
    color: #b08325;
}


/* =========================================================
   19. RESPONSIVE DESIGN — TABLETS
   ========================================================= */

@media (max-width: 1000px) {

    .header-content {
        flex-direction: column;
        padding: 18px 0;
    }

    nav {
        justify-content: center;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-layout,
    .project-layout.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-layout.reverse .project-text,
    .project-layout.reverse .project-box {
        order: initial;
    }

}


/* =========================================================
   20. RESPONSIVE DESIGN — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .container {
        width: 92%;
    }

    .header-content {
        gap: 15px;
    }

    .logo {
        text-align: center;
    }

    .logo span {
        font-size: 23px;
    }

    nav {
        gap: 2px;
    }

    nav a {
        font-size: 12px;
        padding: 7px 8px;
    }

    .hero,
    .hero-overlay {
        min-height: 500px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .intro,
    .services,
    .products-section,
    .project-section,
    .impact-section,
    .why-section {
        padding: 65px 0;
    }

    .intro h2 {
        font-size: 32px;
    }

    .services h2 {
        font-size: 32px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 260px;
    }

    .project-text h2 {
        font-size: 32px;
    }

    .project-box {
        padding: 40px 30px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-section {
        padding: 70px 0;
    }

}


/* =========================================================
   21. SMALL PHONES
   ========================================================= */

@media (max-width: 450px) {

    nav a {
        font-size: 11px;
        padding: 6px 6px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .product-content {
        padding: 24px;
    }

    .project-highlight {
        width: 100%;
        margin-right: 0;
    }

}
/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-section {
    padding: 90px 0;
    background: #f5f8f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1e8e3;
    box-shadow: 0 7px 25px rgba(20, 60, 35, 0.06);
    transition: all 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(20, 60, 35, 0.14);
}

.gallery-image {
    height: 270px;
    overflow: hidden;
    background: #e8eee9;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.06);
}

.gallery-caption {
    padding: 25px;
}

.gallery-caption span {
    display: block;
    color: #b08325;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-caption h3 {
    color: #164b2e;
    font-size: 21px;
    margin-bottom: 10px;
}

.gallery-caption p {
    color: #66736a;
    font-size: 14px;
    line-height: 1.7;
}


/* Gallery responsive layout */

@media (max-width: 1000px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .gallery-section {
        padding: 65px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 280px;
    }

}
/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-section {
    padding: 90px 0;
    background: #f5f8f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: stretch;
}


/* Contact Information */

.contact-info {
    background: #164b2e;
    color: #ffffff;
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(20, 60, 35, 0.12);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 35px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: #b08325;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.contact-item h4 {
    margin: 0 0 7px;
    font-size: 16px;
    color: #ffffff;
}

.contact-item p {
    margin: 0;
    color: #dce8df;
    line-height: 1.7;
    font-size: 14px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e1b95a;
}


/* Contact Form */

.contact-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 14px;
    border: 1px solid #e1e8e3;
    box-shadow: 0 12px 35px rgba(20, 60, 35, 0.08);
}

.contact-form-box h3 {
    color: #164b2e;
    font-size: 28px;
    margin-bottom: 10px;
}

.form-intro {
    color: #66736a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #164b2e;
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d7e0da;
    border-radius: 7px;
    background: #fafcfb;
    color: #333333;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #164b2e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(22, 75, 46, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa59e;
}


/* Contact Button */

.contact-form-box .btn-primary {
    border: none;
    cursor: pointer;
    width: auto;
    padding: 14px 30px;
}


/* Contact Page Responsive */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-box {
        padding: 35px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 65px 0;
    }

    .contact-info,
    .contact-form-box {
        padding: 28px 22px;
    }

    .contact-info h3,
    .contact-form-box h3 {
        font-size: 24px;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 17px;
    }

}
/* =========================
   HOMEPAGE HERO IMAGE
========================= */

.hero {
    background-image:
        linear-gradient(rgba(10, 45, 27, 0.72), rgba(10, 45, 27, 0.72)),
        url("../images/home-institutional-stove.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================
   WHATSAPP SECTION
========================= */

.whatsapp-section {
    padding: 70px 0;
    background: #164b2e;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #1d5a38;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 40px 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.whatsapp-text span {
    display: block;
    color: #e1b95a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.whatsapp-text h2 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 10px;
}

.whatsapp-text p {
    color: #dce8df;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 15px 28px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 20px;
}


/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 27px;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}


/* =========================
   WHATSAPP MOBILE
========================= */

@media (max-width: 800px) {

    .whatsapp-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 25px;
    }

    .whatsapp-text h2 {
        font-size: 25px;
    }

    .whatsapp-button {
        width: 100%;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
        font-size: 24px;
    }
}
