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

:root {
    --primary-color: rgb(0, 71, 113);
    --secondary-color: #479910;
    --text-color: #111111;
    --bg-color: #fff;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Header Styles */
#header {
    background: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    display: block;
    max-height: 60px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.phone-icon {
    font-size: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    padding: 80px 20px 20px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 18px;
    display: block;
}

.mobile-menu .mobile-phone {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: rgba(0, 71, 113, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: rgba(71, 153, 16, 0.9);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: relative;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-prev, .slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.slide-prev:hover, .slide-next:hover {
    background: rgba(255,255,255,0.5);
}

.slide-prev {
    left: 20px;
}

.slide-next {
    right: 20px;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-overview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--primary-color);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.feature {
    text-align: center;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature p {
    color: #555;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 71, 113, 0.8));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.mission-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p {
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    background: var(--light-gray);
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-us-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.why-us-item .icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.why-us-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Certifications */
.certifications {
    padding: 80px 0;
}

.certifications h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.cert-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cert-item {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
}

.cert-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.cert-item p {
    color: #555;
    line-height: 1.6;
}

/* Community Section */
.community {
    background: var(--light-gray);
    padding: 80px 0;
}

.community h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

/* Active nav state */
.desktop-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Pages Styles */
.service-intro {
    padding: 80px 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-badge {
    background: var(--light-gray);
    padding: 12px 20px;
    border-radius: 5px;
    border-left: 3px solid var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Repair Services Grid */
.repair-services {
    padding: 80px 0;
    background: var(--light-gray);
}

.repair-services h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.repair-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.repair-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.repair-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.repair-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.repair-details {
    list-style: none;
    padding-left: 0;
}

.repair-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.repair-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Repair Process */
.repair-process {
    padding: 80px 0;
}

.repair-process h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

/* Signs Need Repair */
.signs-need-repair {
    padding: 80px 0;
    background: var(--light-gray);
}

.signs-need-repair h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.sign-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sign-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.sign-item p {
    margin: 0;
    font-weight: 500;
}

.signs-cta {
    text-align: center;
    margin-top: 40px;
}

.signs-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Door Types Grid */
.door-types {
    padding: 80px 0;
    background: var(--light-gray);
}

.door-types h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.door-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.door-type-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.door-type-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.door-type-card p {
    line-height: 1.7;
    color: #555;
}

/* Installation Benefits */
.installation-benefits {
    padding: 80px 0;
}

.installation-benefits h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #555;
    line-height: 1.7;
}

/* Installation Process Timeline */
.installation-process {
    padding: 80px 0;
    background: var(--light-gray);
}

.installation-process h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--border-color);
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

/* Why New Door */
.why-new-door {
    padding: 80px 0;
}

.why-new-door h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.reason-item {
    background: var(--light-gray);
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.reason-item p {
    margin: 0;
    font-weight: 500;
}

/* Opener Services Grid */
.opener-services {
    padding: 80px 0;
    background: var(--light-gray);
}

.opener-services h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.opener-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.opener-service-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.opener-service-card .service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.opener-service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.opener-service-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

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

/* Opener Brands */
.opener-brands {
    padding: 80px 0;
}

.opener-brands h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.brands-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

/* Opener Types Comparison */
.opener-types {
    padding: 80px 0;
    background: var(--light-gray);
}

.opener-types h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.types-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.type-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.type-pros strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.type-pros ul {
    list-style: none;
    padding-left: 0;
}

.type-pros li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.type-pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Opener Problems */
.opener-problems {
    padding: 80px 0;
}

.opener-problems h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.problem-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.problem-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.problem-item p {
    margin: 0;
    font-weight: 500;
}

/* Smart Features */
.smart-features {
    padding: 80px 0;
    background: var(--light-gray);
}

.smart-features h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.smart-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.smart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.smart-feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.smart-feature h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.smart-feature p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta .btn {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero {
        height: 500px;
    }

    .services-overview h2,
    .why-choose h2,
    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
    }

    .phone-btn {
        font-size: 14px;
    }

    .phone-btn .phone-icon {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }

    .slide-prev, .slide-next {
        font-size: 30px;
        padding: 5px 15px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-us h2,
    .certifications h2,
    .community h2 {
        font-size: 32px;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .timeline-step:not(:last-child)::after {
        left: 29px;
        top: 70px;
    }

    .repair-services h2,
    .door-types h2,
    .installation-benefits h2,
    .installation-process h2,
    .why-new-door h2,
    .opener-services h2,
    .opener-brands h2,
    .opener-types h2,
    .opener-problems h2,
    .smart-features h2,
    .signs-need-repair h2,
    .repair-process h2 {
        font-size: 32px;
    }
}