/* HD Customs - Premium Car Upgrades Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    color: #dc143c;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-logo {
    text-align: center;
    margin-bottom: 40px;
}

.hero-logo img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #dc143c, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #cccccc;
}

.tagline {
    font-size: 1.1rem;
    color: #dc143c;
    font-weight: 500;
    margin-bottom: 10px;
}

.location-tagline {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #dc143c, #ff4500);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    background: linear-gradient(45deg, #ff4500, #dc143c);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(220, 20, 60, 0.3);
}

.feature-card h3 {
    color: #dc143c;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-info-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.info-item {
    background: rgba(0, 0, 0, 0.35);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-item h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #dc143c;
}

.info-item p,
.info-item a {
    color: #dddddd;
    font-size: 0.98rem;
    line-height: 1.7;
}

.info-item a {
    color: #ffffff;
    text-decoration: underline;
}

.info-item a:hover {
    color: #ff8b8b;
}

.info-item:last-child {
    grid-column: span 1;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(220, 20, 60, 0.2);
}

.service-item h3 {
    color: #dc143c;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.videos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc143c, #ff4500);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    text-align: center;
    color: #cccccc;
    margin-bottom: 10px;
}

footer p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Services Detailed Section */
.services-detailed {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.services-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-categories {
    display: grid;
    gap: 60px;
}

.service-category h3 {
    color: #dc143c;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.category-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-detail {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(220, 20, 60, 0.3);
}

.service-detail h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-detail p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-features span {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(220, 20, 60, 0.2);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

/* Video Showcase */
.video-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(0, 0, 0, 0.6));
}

.video-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 25px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(220, 20, 60, 0.3);
}

.video-card h3 {
    color: #dc143c;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    max-height: 420px;
    border-radius: 14px;
    background: #000;
    object-fit: cover;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-logo img {
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .video-showcase {
        padding: 60px 0;
    }

    .video-card {
        padding: 20px;
    }
}

.video-card p {
    color: #cccccc;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(220, 20, 60, 0.3);
}

.pricing-card.featured {
    border-color: #dc143c;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc143c, #ff4500);
    border-radius: 17px;
    z-index: -1;
}

.pricing-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc143c;
    margin-bottom: 30px;
}

.popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #dc143c, #ff4500);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc143c;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container h2,
.contact-info-container h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Information */
.contact-info-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info {
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: #dc143c;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.contact-cta h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-cta p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.emergency-contact {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.emergency-contact p {
    margin: 5px 0;
    color: #dc143c;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Section */
    .hero {
        padding: 100px 20px 60px;
        text-align: center;
    }

    .hero-logo img {
        max-width: 150px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Features Section */
    .features h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Services Preview */
    .services-preview h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form,
    .contact-info-container {
        padding: 30px 20px;
    }

    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.8rem;
    }

    /* Services Detailed */
    .services-detailed h2 {
        font-size: 2rem;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 15px 30px;
    }

    .hero-logo img {
        max-width: 120px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .location-tagline {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* General Sections */
    .container {
        padding: 0 15px;
    }

    .features {
        padding: 50px 0;
    }

    .features h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .feature-card {
        padding: 18px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .services-preview {
        padding: 50px 0;
    }

    .services-preview h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .service-item {
        padding: 18px;
    }

    .service-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .service-item p {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 50px 0;
    }

    .contact-form,
    .contact-info-container {
        padding: 20px 15px;
    }

    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    /* Services Detailed */
    .services-detailed {
        padding: 50px 0;
    }

    .services-detailed h2 {
        font-size: 1.6rem;
    }

    .service-detail h3 {
        font-size: 1.2rem;
    }

    .service-detail h4 {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 11px 22px;
        font-size: 0.95rem;
    }

    /* Footer */
    footer {
        padding: 25px 0;
    }

    footer p {
        font-size: 0.85rem;
    }
}

/* Extra small devices (375px) */
@media (max-width: 375px) {
    .nav-logo h1 {
        font-size: 1.3rem;
    }

    .nav-container {
        height: 55px;
    }

    .nav-menu {
        top: 55px;
        padding-top: 40px;
        gap: 20px;
    }

    .hero {
        padding: 55px 12px 25px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .features h2,
    .services-preview h2,
    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .container {
        padding: 0 12px;
    }
}

/* Ultra-small devices (320px) */
@media (max-width: 320px) {
    .nav-logo h1 {
        font-size: 1.2rem;
    }

    .nav-container {
        height: 50px;
        padding: 0 10px;
    }

    .nav-menu {
        top: 50px;
        padding-top: 30px;
        gap: 15px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 6px 12px;
    }

    .hero {
        padding: 50px 10px 20px;
    }

    .hero-logo img {
        max-width: 100px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .cta-button {
        padding: 9px 18px;
        font-size: 0.85rem;
    }

    .features,
    .services-preview,
    .contact-section,
    .services-detailed {
        padding: 45px 0;
    }

    .features h2,
    .services-preview h2,
    .services-detailed h2,
    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .feature-card,
    .service-item,
    .service-detail {
        padding: 15px;
    }

    .feature-card h3,
    .service-item h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feature-card p,
    .service-item p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 10px;
    }

    .contact-form,
    .contact-info-container {
        padding: 18px 12px;
    }

    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.3rem;
    }

    footer {
        padding: 20px 0;
    }

    footer p {
        font-size: 0.8rem;
    }
}
