:root {
    --primary-color: #F7CA18;
    --secondary-color: #333;
    --text-color: #444;
    --white: #fff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.75rem;  /* 28pt */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-left: 1.5rem;
}

h2:not(.hero h2):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 2rem;
    background-color: var(--primary-color);
}

.hero h2 {
    padding-left: 0;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
}

.darázs {
    color: var(--secondary-color);
}

.mester {
    color: var(--primary-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    margin: 0 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.contact-header {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-header i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

.contact-separator {
    color: var(--primary-color);
    margin: 0 0.5rem;
}

.contact-header a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-header a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    padding: 4rem 2rem;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    transform: scaleX(-1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0));
    z-index: 1;
    transform: scaleX(-1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    transform: scaleX(-1);
}

.hero-content-inner {
    width: 66.666%;
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    color: var(--primary-color);
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero-questions {
    text-align: left;
}

.hero-questions p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 2;
    text-align: left;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #e6b800;
}

.cta-button-outlined {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-outlined:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.service-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.service-image.round-image:hover {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.services-text-box {
    background-color: #f0f0f0;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.services-text-box p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-logo {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f5f5f5;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-container::before,
.testimonials-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--primary-color);
}

.testimonials-container::before {
    display: none;
}

.testimonials-container::after {
    display: none;
}

.testimonials h2 {
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    letter-spacing: 0.5px;
    font-size: 1.75rem;
}

.testimonials h2:before {
    display: none;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 400;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: var(--primary-color);
    font-size: 2rem;
    font-family: Georgia, serif;
    position: absolute;
}

.testimonial-text::before {
    left: -1rem;
    top: -0.5rem;
}

.testimonial-text::after {
    right: -1rem;
    bottom: -0.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0;
}

.carousel-button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, background-color 0.3s;
    font-size: 1.2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    opacity: 1;
    background-color: var(--primary-color);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    header {
        padding: 0.75rem 1rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .logo {
        font-size: 1.5rem;
    }

    .contact-header {
        font-size: 1.1rem;
    }

    .testimonials {
        padding: 3rem 1rem;
    }

    .carousel-wrapper {
        gap: 0.5rem;
    }

    .carousel-button {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p, 
    .hero-questions p,
    .service-card p,
    .about-content p,
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }

    .certification-badge {
        font-size: 0.9rem;
    }

    .service-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-content-inner {
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: left;
    }

    .hero-questions {
        text-align: left;
    }

    .hero-questions p {
        font-size: 1rem;
        line-height: 1.3;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    
    .cta-button,
    .cta-button-outlined {
        width: 100%;
    }

    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .process-step {
        width: 100%;
        padding: 0;
    }

    .honeycomb {
        width: 140px;
        height: 140px;
    }

    .step-content {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: 70% center;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: var(--white);
    position: relative;
    background-image: url('images/darazsirtas-contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    z-index: 1;
    transform: scaleX(-1);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    transform: scaleX(-1);
}

.contact-content {
    text-align: left;
}

.contact-content h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    position: relative;
    padding-left: 0;
}

.contact-content h2:before {
    display: none;
}

.contact-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

.contact-info {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info .logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.contact-info .logo {
    font-size: 2.5rem;
    text-align: center;
}

.contact-phone {
    text-align: center;
    margin-top: 2rem;
}

.contact-phone a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-phone a:hover {
    color: var(--white);
}

.contact-email {
    text-align: center;
    margin-top: 1rem;
}

.contact-email a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
}

.contact-email a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-info {
        padding: 2rem;
    }

    .contact-phone a {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-content .logo {
    font-size: 1.75rem;
    font-weight: 700;
}

.footer-content .darázs {
    color: var(--white);
}

.footer-content .mester {
    color: var(--primary-color);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* About Me Section */
.about-me {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.profile-section {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    position: relative;
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    -webkit-clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    margin-bottom: 1rem;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: var(--secondary-color);
    padding: 2px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    -webkit-clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 1rem;
}

.profile-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 0.5rem;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.about-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.certification-badge {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
}

@media (max-width: 992px) {
    .about-container {
        gap: 3rem;
    }
    
    .profile-section {
        flex: 0 0 250px;
    }

    .profile-image {
        width: 250px;
        height: 250px;
        border-width: 1.5px;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .profile-section {
        flex: 0 0 200px;
    }

    .profile-image {
        width: 200px;
        height: 200px;
        border-width: 1px;
    }
}

/* Common Image Styles */
.round-image {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.round-image:hover {
    transform: scale(1.02);
}

.round-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Intro Section */
.services-intro {
    padding: 2rem 2rem;
    background-color: #f5f5f5;
    text-align: left;
}

.services-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.services-intro h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
}

.services-intro p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
}

@media (max-width: 768px) {
    .services-intro {
        padding: 3rem 1rem;
    }

    .services-intro h2 {
        font-size: 1.75rem;
    }

    .services-intro p {
        font-size: 1rem;
    }
}

/* Tiles Section */
.tiles-section {
    background-color: var(--white);
    padding: 3rem 0;
}

.tiles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tiles-container .cta-button {
    margin-top: 2rem;
}

.tiles-container h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.tile {
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.tile-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.tile p {
    padding: 0 1rem 1rem;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
    margin: 0;
}

.tile-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tile-cta-button:hover {
    background-color: #e6b800;
}

@media (max-width: 768px) {
    .tiles-section {
        padding: 3rem 1rem;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .tile-image {
        height: 180px;
    }

    .tile h3 {
        font-size: 1.25rem;
        padding: 1.25rem 1.25rem 0.5rem;
    }

    .tile p {
        font-size: 1rem;
        padding: 0 1.25rem 1.25rem;
    }
}

/* Prices Section */
.prices {
    padding: 3rem 2rem;
    background-color: white;
}

.prices-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.prices-content h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
}

.prices-content h3 {
    margin: 2.5rem 0 1.25rem 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 1.5rem;
    font-size: 1.1rem;
}

.note {
    font-style: italic;
    color: var(--text-color);
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f9f9f9;
    border-left: 3px solid var(--primary-color);
}

.prices-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.prices-content .cta-button {
    margin-top: 2rem;
    display: inline-block;
}

.prices-content .tiles-cta-container {
    margin-top: 2rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .prices {
        padding: 3rem 1rem;
    }

    .prices h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .prices p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background-color: white;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
}

.accordion {
    width: 100%;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: 1rem;
    text-align: left;
    background-color: white;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: background-color 0.3s;
}

.accordion-button:hover {
    background-color: #f9f9f9;
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 1rem;
    font-size: 1.2rem;
}

.accordion-button.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-content p {
    padding: 1rem;
    margin: 0;
}

.accordion-button.active + .accordion-content {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq {
        padding: 3rem 1rem;
    }

    .faq h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-content p {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .hero-content-inner {
        width: 66.666%;
    }
}

@media (max-width: 991px) {
    .hero::before {
        width: 100%;
    }

    .hero-content-inner {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-intro,
    .tiles-section,
    .prices,
    .testimonials,
    .about-me,
    .contact,
    footer {
        padding: 3rem 1rem;
    }
}

/* How To Section */
.how-to {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.how-to-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.how-to-content h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
}

.how-to-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.how-to-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.how-to-content .cta-button {
    margin-top: 2rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .how-to {
        padding: 3rem 1rem;
    }

    .how-to-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .how-to-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

.steps-list {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0 2rem 2rem;
    max-width: 800px;
    margin-left: 2rem;
    margin-right: auto;
}

.steps-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--secondary-color);
}

.steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 480px) {
    .contact-header {
        display: none;
    }
}

.sticky-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-phone-bar a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .sticky-phone-bar {
        display: block;
    }
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2rem 0 4rem 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    padding: 0 1rem;
    min-width: 0;
}

.honeycomb {
    width: 160px;
    height: 160px;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.honeycomb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
}

.step-content {
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--secondary-color);
    margin: 0;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .process-step {
        width: 100%;
        padding: 0;
    }

    .honeycomb {
        width: 140px;
        height: 140px;
    }

    .step-content {
        padding: 0 2rem;
    }
}

.about-wasps {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.about-wasps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-wasps h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
}

.about-wasps h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 2rem;
    background-color: var(--primary-color);
}

.about-wasps-intro {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    width: 100%;
    max-width: 100%;
}

.about-wasps .accordion {
    width: 100%;
    max-width: 1200px;
}

.about-wasps .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.about-wasps .accordion-button {
    width: 100%;
    padding: 2rem;
    text-align: left;
    background-color: white;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-wasps .accordion-icon {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 2px;
}

.about-wasps .accordion-button:hover {
    background-color: #f9f9f9;
}

.about-wasps .accordion-button::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.2rem;
}

.about-wasps .accordion-button.active::after {
    content: '-';
}

.about-wasps .wasp-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-wasps .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

.about-wasps .accordion-content p {
    margin: 1rem 0;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .about-wasps {
        padding: 3rem 1rem;
    }
    
    .about-wasps h2 {
        font-size: 2rem;
    }
    
    .about-wasps-intro {
        font-size: 1.1rem;
    }

    .about-wasps .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .about-wasps .accordion-icon {
        width: 24px;
        height: 24px;
    }

    .about-wasps .wasp-image {
        max-width: 100%;
        margin: 1rem 0;
    }
}

.tiles-cta-container {
    margin-top: 3rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    background-color: #f8f9fa;
    width: 100%;
}

.tiles-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tiles-cta-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tiles-cta-content .cta-button {
    display: inline-block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tiles-cta-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .tiles-cta-content p {
        font-size: 1rem;
    }
}

.faq-container .tiles-cta-container {
    margin-top: 2rem;
    margin-bottom: 0;
}

.split-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.split-image {
    flex: 1;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.split-content {
    flex: 2;
    min-width: 66.666%;
}

.split-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.signature {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    margin-top: 2rem;
    font-style: italic;
}

.signature span {
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    display: block;
    margin-top: 0.25rem;
}

.signature .title {
    font-weight: normal;
}

@media (max-width: 768px) {
    .split-section {
        padding: 3rem 1rem;
    }
    
    .split-container {
        flex-direction: column;
    }
    
    .split-image,
    .split-content {
        min-width: 100%;
    }

    .split-image img {
        width: 150px;
        height: 150px;
    }

    .signature {
        text-align: left;
        margin-top: 1.5rem;
    }
}

.tags-section {
    background-color: var(--white);
    padding: 2rem 0;
}

.tags-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tags-content {
    text-align: center;
}

.tags-label {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tags-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}

.operating-hours {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
}

/* Welcome Section Styles */
.welcome-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.welcome-content {
    flex: 1;
    text-align: left;
}

.welcome-image {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
    position: relative;
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    -webkit-clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    margin-bottom: 1rem;
    border: 2px solid var(--secondary-color);
    background-color: var(--secondary-color);
    padding: 2px;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    -webkit-clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
}

.welcome-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    padding-left: 0;
}

.welcome-content h2:before {
    display: none;
}

.welcome-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 40px 0;
    }
    
    .welcome-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .welcome-content h2 {
        font-size: 2rem;
    }
    
    .welcome-content p {
        font-size: 1.1rem;
    }

    .welcome-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
} 