/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #494949;
    background: #fff;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
}

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

.nav a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    transition: color 0.3s;
}

.nav a:hover {
    color: #666;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-dark {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), #191919);
    color: #fff;
    border: none;
}

.btn-dark:hover {
    background: linear-gradient(0deg, #191919, #333);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.service-card {
    background: #f7f7f7;
    padding: 30px 20px;
    text-align: center;
    border-radius: 5px;
}

.service-card h3 {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: #494949;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    border-radius: 50%;
    width: 100%;
}

.about-text h2 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 50px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -4px;
    color: #000;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #494949;
}

/* Services Images Section */
.services-images {
    padding: 60px 0;
    background: #f5f5f5;
}

.services-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-image-card {
    text-align: center;
}

.service-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.service-image-card h3 {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-image-card p {
    font-size: 13px;
    color: #494949;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    margin-bottom: 40px;
}

.blog-card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-author {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.blog-card p:last-child {
    font-size: 14px;
    color: #494949;
    line-height: 1.7;
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #f9f9f9;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 13px;
    color: #494949;
    margin-bottom: 8px;
}

.footer-col a {
    color: #494949;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #000;
}

/* Page Header */
.page-header {
    background: #f7f7f7;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}


.contact-form-container h2 {
    font-size: 28px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-description {
    font-size: 15px;
    color: #494949;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #494949;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 5px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 600;
}

.info-item {
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 14px;
    color: #494949;
    line-height: 1.7;
}

.info-item a {
    color: #494949;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #000;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 14px;
    color: #494949;
    transition: color 0.3s;
}

.social-link:hover {
    color: #000;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: #494949;
    line-height: 1.7;
}

/* About Detail Page */
.about-detail {
    padding: 80px 0;
    background: #fff;
}

.about-detail-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-detail-image {
    flex: 0 0 350px;
}

.about-detail-image img {
    border-radius: 50%;
    width: 100%;
}

.about-detail-text h2 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -3px;
    color: #000;
    margin-bottom: 30px;
}

.about-section {
    margin-bottom: 35px;
}

.about-section h3 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 15px;
    color: #494949;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    font-size: 14px;
    color: #494949;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.about-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1018px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        flex: 0 0 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-detail-content {
        flex-direction: column;
    }

    .about-detail-image {
        flex: 0 0 300px;
        margin: 0 auto;
    }

    .about-detail-text h2 {
        font-size: 32px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .services-images-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        font-size: 32px;
    }
}