body {
    margin: 0;
    font-family: 'Ubuntu', Arial, sans-serif;
    background: #0b1633;
    color: #fff;
}

.top-bar {
    background: #16a73a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    font-size: 16px;
    height: 48px;
    min-height: 48px;
    width: 100vw;
    min-width: 100%;
    left: 0;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}
.top-bar a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
    transition: color 0.2s;
}
.top-bar a:hover {
    color: #222;
}

.top-bar-left span, .top-bar-right a {
    font-size: 16px;
}
.top-bar-left i, .top-bar-right i {
    font-size: 16px;
}
.top-bar-left span {
    margin-right: 8px;
}
.top-bar-right a {
    margin-left: 1px;
    margin-right: 1px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-left: auto;
}
.top-bar-right span {
    margin-right: 4px;
    font-size: 16px;
}

.bar {
    color: #fff;
    opacity: 0.5;
    margin: 0 6px;
    font-weight: bold;
}

.menu-bar {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 10px;
    height: 76px;
    min-height: 76px;
    padding-top: 0;
    padding-bottom: 0;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 160px;
    height: auto;
    display: block;
    margin-right: 32px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #222;
}
.logo-desc {
    color: #ff5a00;
    font-size: 0.95rem;
    margin-top: 2px;
}
.main-menu {
    display: flex;
    gap: 10px;
    position: relative;
}
.main-menu a {
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    font-weight: 400;
    color: #0a1832;
    padding: 12px 6px;
    line-height: 1.2;
    position: relative;
    transition: color 0.2s;
    border-left: none;
}
.main-menu a:not(:first-child)::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40%;
    width: 1px;
    background: #e0e6f7;
}
.main-menu a::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #11808f 0%, #25D366 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    position: absolute;
    left: 0;
    bottom: 18px;
}
.main-menu a:hover::after,
.main-menu a:focus::after {
    width: 100%;
}
.main-menu a:hover,
.main-menu a:focus {
    color: #25D366;
}
.menu-btn {
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}
.menu-btn:hover {
    background: #128C7E;
    color: #fff;
}
.menu-btn i {
    font-size: 1.2em;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 18px;
    z-index: 120;
}
.menu-toggle .bar {
    background: linear-gradient(90deg, #11808f 0%, #25D366 100%);
}
@media (max-width: 900px) {
    .menu-bar, .top-bar {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        height: auto;
        min-height: unset;
    }
    .logo img {
        width: 90px;
        margin-right: 0;
    }
    .main-menu {
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 0;
        z-index: 99;
        display: none;
    }
    .main-menu.open {
        display: flex;
    }
    .main-menu a {
        line-height: 54px;
        font-size: 1rem;
    }
    .menu-bar {
        height: 62px;
        min-height: 62px;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-btn {
        margin-left: 0;
        margin-top: 8px;
    }
    .top-bar-left, .top-bar-right {
        font-size: 12px;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

.slider {
    position: relative;
    width: 100vw;
    min-width: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: calc(100vh - 110px);
    min-height: 300px;
    max-height: calc(100vh - 110px);
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: #e9f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-images {
    width: 100vw;
    height: calc(100vh - 110px) !important;
    display: flex;
    position: relative;
}
.slider-img {
    width: 100vw;
    height: calc(100vh - 110px) !important;
    object-fit: cover;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.5s;
    border-radius: 0;
}
.slider-img.active {
    display: block;
    opacity: 1;
    z-index: 2;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17,128,143,0.85);
    color: #fff;
    border: none;
    font-size: 2.2rem;
    padding: 8px 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
}
.slider-btn:hover {
    background: #11808f;
}
.slider-btn.prev {
    left: 18px;
}
.slider-btn.next {
    right: 18px;
}
.slider-content.container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
@media (max-width: 900px) {
    .slider, .slider-images, .slider-img {
        height: 40vh !important;
        min-height: 140px;
        max-height: 40vh !important;
    }
    .slider-btn {
        font-size: 1.4rem;
        padding: 4px 10px;
    }
}

.menu-bar.sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
    transition: box-shadow 0.2s;
}

.top-bar.dark {
    background: #0b1633;
    color: #fff;
    font-size: 15px;
    padding: 0 0;
    width: 100vw;
    min-width: 100%;
    left: 0;
    position: relative;
    box-sizing: border-box;
    height: 48px;
    display: flex;
    align-items: center;
    z-index: 200;
    border-bottom: 1.5px solid #18244a;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    padding: 0 0;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}
.top-bar-left span, .top-bar-right span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.top-bar a {
    color: #fff;
    margin-left: 4px;
    font-size: 16px;
    transition: color 0.2s;
}
.top-bar a:hover {
    color: #25D366;
}
.bar {
    color: #fff;
    opacity: 0.4;
    margin: 0 6px;
    font-weight: bold;
}
.menu-bar.card {
    background: #fff;
    border-radius: 0 0 16px 16px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
    height: 64px;
    min-height: 64px;
}
.logo img {
    width: 160px;
    height: auto;
    display: block;
}
.main-menu {
    display: flex;
    gap: 0px;
    position: relative;
}
.main-menu a {
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: #0b1633;
    padding: 0 6px;
    line-height: 60px;
    position: relative;
    transition: color 0.2s;
    text-decoration: none;
    background: none;
}
.main-menu a::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #11808f 0%, #25D366 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    position: absolute;
    left: 0;
    bottom: 18px;
}
.main-menu a:hover::after,
.main-menu a:focus::after {
    width: 100%;
}
.main-menu a:hover,
.main-menu a:focus {
    color: #11808f;
}
.menu-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-btn {
    background: none;
    border: none;
    color: #11808f;
    font-size: 1.3rem;
    cursor: pointer;
    margin-right: 8px;
    transition: color 0.2s;
}
.search-btn:hover {
    color: #25D366;
}
.menu-btn {
    background: #1188ff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(17,136,255,0.08);
    margin-left: 8px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: background 0.2s;
}
.menu-btn:hover {
    background: #25D366;
    color: #fff;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 18px;
    z-index: 120;
}
.menu-toggle .bar {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #11808f 0%, #25D366 100%);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.hero {
    width: 100vw;
    min-width: 100%;
    background: #0b1633;
    padding: 30px 0 0 0;
    position: relative;
    overflow: hidden;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 540px;
}
.hero-text {
    flex: 1 1 0;
    z-index: 2;
}
.hero-label {
    color: #1188ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    display: inline-block;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.1;
    color: #fff;
}
.hero-desc {
    font-size: 1.18rem;
    color: #e0e6f7;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-buttons {
    display: flex;
    gap: 18px;
}
.hero-btn {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: 2px solid transparent;
    display: inline-block;
}
.hero-btn.primary {
    background: #1188ff;
    color: #fff;
    border-color: #1188ff;
}
.hero-btn.primary:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}
.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.hero-btn.secondary:hover {
    background: #fff;
    color: #1188ff;
}
.hero-image {
    flex: 1 1 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
@media (max-width: 1100px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        min-height: 400px;
    }
    .hero-image {
        align-self: center;
    }
}
@media (max-width: 900px) {
    .container {
        padding: 0 12px;
    }
    .menu-bar.card {
        flex-direction: row;
        padding: 0 12px;
        height: 40px;
        min-height: 20px;
        margin-top: 0;
    }
    .logo img {
        width: 100px;
    }
    .main-menu {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 0;
        z-index: 99;
        display: none;
    }
    .main-menu.open {
        display: flex;
    }
    .main-menu a {
        line-height: 48px;
        padding: 0 24px;
        font-size: 1.08rem;
        border-bottom: 1px solid #f0f0f0;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-btn {
        margin-left: 0;
        margin-top: 8px;
        height: 44px;
        padding: 12px 20px;
    }
    .menu-actions {
        gap: 6px;
    }
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        min-height: 320px;
    }
    .hero-image img {
        width: 220px;
        height: 220px;
    }
    .top-bar.dark {
        height: auto;
        min-height: 40px;
        padding: 6px 0;
    }
    .top-bar .container {
        height: auto;
        flex-direction: column;
        gap: 4px;
        padding: 0 0;
    }
}
@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-image img {
        width: 140px;
        height: 140px;
    }
    .menu-bar.card {
        height: 54px;
        min-height: 54px;
        padding: 0 4px;
    }
}

.hero-title, .hero-label, .hero-desc, .hero-btn {
    font-family: 'Ubuntu', Arial, sans-serif;
}

.about-section {
    background: #fff;
    color: #181c3a;
    padding: 60px 0 40px 0;
}
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    position: relative;
}
.about-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.about-text {
    flex: 1 1 0;
    padding-left: 24px;
}
.about-label {
    color: #35ac39;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: inline-block;
    border-bottom: 2px solid #35ac39;
    padding-bottom: 2px;
    letter-spacing: 0.02em;
}
.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 12px 0 24px 0;
    color: #181c3a;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.about-desc {
    font-size: 1.08rem;
    color: #555b7a;
    margin-bottom: 12px;
    line-height: 1.7;
}
.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 32px;
}
.about-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 90px;
}
.about-stat-number {
    color: #35ac39;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.about-stat-number span {
    font-size: 1.1rem;
    color: #181c3a;
    font-weight: 400;
}
.about-stat-label {
    color: #181c3a;
    font-size: 1.08rem;
    font-weight: 500;
    margin-top: 4px;
}
@media (max-width: 1100px) {
    .about-content {
        flex-direction: column;
        gap: 32px;
    }
    .about-text {
        padding-left: 0;
    }
    .about-stats {
        gap: 24px;
    }
    .about-divider {
        display: none;
    }
}
@media (max-width: 700px) {
    .about-section {
        padding: 32px 0 16px 0;
    }
    .about-title {
        font-size: 1.3rem;
    }
    .about-stats {
        gap: 12px;
        margin-top: 18px;
    }
    .about-stat-number {
        font-size: 1.2rem;
    }
}

.about-divider {
    width: 2px;
    min-height: 320px;
    background: linear-gradient(to bottom, #e0e6f7 0%, #b0b8d9 100%);
    border-radius: 2px;
    margin: 0 32px;
    align-self: stretch;
}
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 300px;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.contact-item i {
    font-size: 1.5rem;
    color: #35ac39;
    margin-right: 16px;
}
.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #181c3a;
    margin: 0 0 4px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.contact-item p {
    color: #8b8fa7;
    font-size: 1rem;
    margin: 0;
}
.contact-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.contact-logo-img {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 12px auto;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: none !important;
    padding: 0 !important;
}

.logo-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 28px 18px 28px;
    max-width: 320px;
    width: 320px;
    height: fit-content;
    box-sizing: border-box;
}
.logo-card-img {
    max-width: 500px;
    width: 250px;
    height: auto;
    display: block;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.services-section {
    background: #0b1632;
    padding: 64px 0 64px 0;
}
.services-header {
    text-align: center;
    margin-bottom: 72px;
}
.services-label {
    color: #35ac39;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 18px;
}
.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.services-cards {
    display: flex;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
}
.service-card {
    background: #fff;
    border-radius: 24px 24px 40px 40px;
    box-shadow: 0 4px 32px rgba(11,22,51,0.08);
    width: 340px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 32px 0;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 40px rgba(11,22,51,0.16);
}
.service-card-top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -32px;
    margin-bottom: 18px;
}
.service-card-number {
    background: #f1f3f7;
    color: #b0b8d9;
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #f6f6fa;
    box-shadow: 0 2px 8px rgba(11,22,51,0.04);
}
.service-card-content {
    text-align: center;
    padding: 0 28px;
}
.service-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #181c3a;
    margin: 0 0 10px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.service-card-content p {
    color: #8b8fa7;
    font-size: 1.05rem;
    margin: 0 0 18px 0;
}
.service-card-link {
    color: #181c3a;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.service-card-link span {
    font-size: 1.2em;
    margin-left: 4px;
}
.service-card-link:hover {
    color: #35ac39;
}
.service-card-icon {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(11,22,51,0.08);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
}
.service-card-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
@media (max-width: 1100px) {
    .services-cards {
        gap: 18px;
    }
    .service-card {
        width: 90vw;
        max-width: 400px;
    }
}
@media (max-width: 700px) {
    .services-section {
        padding: 32px 0 32px 0;
    }
    .services-title {
        font-size: 1.5rem;
    }
    .service-card {
        width: 98vw;
        max-width: 98vw;
        padding-bottom: 48px;
    }
    .service-card-content {
        padding: 0 8px;
    }
}

.site-footer {
    background: #0a142c;
    color: #fff;
    padding: 48px 0;
    margin-top: 64px;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.footer-left {
    display: flex;
    gap: 16px;
}
.footer-left a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e2840;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: background 0.2s;
}
.footer-left a:hover {
    background: #35ac39;
}
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-center-logo {
    width: 90px;
    height: auto;
    margin-bottom: 8px;
}
.footer-center-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.footer-center-subtitle {
    font-size: 1.05rem;
    color: #35ac39;
    font-weight: 500;
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-phone-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #35ac39;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
}
.footer-phone-text {
    display: flex;
    flex-direction: column;
}
.footer-phone-text .help-text {
    font-size: 0.95rem;
    color: #b0b8d9;
    margin-bottom: 4px;
}
.footer-phone-text .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
@media (max-width: 1100px) {
    .footer-main {
        flex-direction: column;
        gap: 48px;
    }
    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
        width: 100%;
    }
}
@media (max-width: 700px) {
    .site-footer {
        padding: 32px 0;
    }
    .footer-main {
        gap: 32px;
    }
    .footer-left a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .footer-center-logo {
        width: 70px;
    }
    .footer-center-title {
        font-size: 1.4rem;
    }
    .footer-center-subtitle {
        font-size: 0.9rem;
    }
    .footer-phone-icon {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
    .footer-phone-text .help-text {
        font-size: 0.85rem;
    }
    .footer-phone-text .phone-number {
        font-size: 1.3rem;
    }
}

.contact-section {
    background: #f8f9fc;
    padding: 80px 0;
}
.contact-main-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.contact-info-section {
    flex: 2;
}
.contact-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #181c3a;
    margin: 0 0 16px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.contact-description {
    font-size: 1.08rem;
    color: #555b7a;
    line-height: 1.6;
    margin-bottom: 40px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-info-card .card-icon {
    background: #eff3f7;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212d4d;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-info-card .card-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #181c3a;
    margin: 0 0 6px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.contact-info-card .card-text p {
    font-size: 0.98rem;
    color: #555b7a;
    margin: 0;
    line-height: 1.4;
}
.social-media-section {
    margin-top: 40px;
}
.social-media-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #181c3a;
    margin: 0 0 12px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.social-media-description {
    font-size: 1.05rem;
    color: #555b7a;
    margin-bottom: 24px;
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eff3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212d4d;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
}
.social-icons a:hover {
    background: #35ac39;
    color: #fff;
}
.appointment-form-section {
    flex: 1.5;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #181c3a;
    margin: 0 0 32px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
    text-align: center;
}
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e6f7;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #f8f9fc;
    box-sizing: border-box;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: #a0a6bb;
}
.appointment-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22%23212d4d%22%3E%3Cpath%20d%3D%22M5.293%207.293a1%201%200%20011.414%200L10%2010.586l3.293-3.293a1%201%200%20111.414%201.414l-4%204a1%201%200%2001-1.414%200l-4-4a1%201%200%20010-1.414z%22%20clip-rule%3D%22evenodd%22%20fill-rule%3D%22evenodd%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
    padding-right: 40px;
}
.appointment-form textarea {
    resize: vertical;
    min-height: 100px;
}
.appointment-btn {
    background: #35ac39;
    color: #fff;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.appointment-btn:hover {
    background: #1b761e;
}
@media (max-width: 1100px) {
    .contact-main-content {
        flex-direction: column;
        gap: 40px;
    }
    .contact-title {
        font-size: 2.2rem;
    }
    .contact-description {
        font-size: 1rem;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .social-media-title {
        font-size: 1.5rem;
    }
    .appointment-form-section {
        padding: 30px;
    }
    .form-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 700px) {
    .contact-section {
        padding: 40px 0;
    }
    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .contact-info-card .card-text h3 {
        font-size: 1.1rem;
    }
    .contact-info-card .card-text p {
        font-size: 0.9rem;
    }
    .social-icons {
        justify-content: center;
    }
    .appointment-form-section {
        padding: 20px;
    }
    .form-title {
        font-size: 1.5rem;
    }
    .appointment-form input,
    .appointment-form select,
    .appointment-form textarea {
        padding: 12px 15px;
    }
    .appointment-btn {
        padding: 14px 20px;
        font-size: 1.05rem;
    }
}

.map-section {
    background: #f8f9fc;
    padding: 32px 0 32px 0;
}
.map-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #181c3a;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.map-container iframe {
    border-radius: 12px;
}
@media (max-width: 700px) {
    .map-section {
        padding: 32px 0;
    }
    .map-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
}

.products-section {
    background: #f8f9fc;
    padding: 80px 0;
}
.products-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #181c3a;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}
.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #181c3a;
    margin: 0 0 10px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.product-description {
    color: #8b8fa7;
    font-size: 1.05rem;
    margin: 0 0 18px 0;
}
.product-link {
    color: #181c3a;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.product-link span {
    font-size: 1.2em;
    margin-left: 4px;
}
.product-link:hover {
    color: #35ac39;
}

.product-features {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}
.product-features li {
    color: #8b8fa7;
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.product-features li:before {
    content: "•";
    color: #35ac39;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #35ac39;
    margin-right: 16px;
}
.product-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8b8fa7;
}
.product-actions {
    display: flex;
    align-items: center;
    margin-top: 16px;
}
.product-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.product-whatsapp i {
    margin-right: 6px;
    font-size: 1.1rem;
}
.product-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}
@media (max-width: 700px) {
    .products-section {
        padding: 40px 0;
    }
    .products-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    .product-card {
        padding: 16px;
    }
    .product-title {
        font-size: 1.1rem;
    }
    .product-description {
        font-size: 0.9rem;
    }
}

.social-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 5px;
    width: 100%;
    max-width: 300px;
}
.social-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #181c3a;
    margin: 0 0 16px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    color: #181c3a;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.social-icons a:hover {
    color: #35ac39;
}

/* Blog Sayfası Stilleri */
.blog-section {
    padding: 80px 0;
    background: #f8f9fc;
}
.blog-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #181c3a;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 24px;
    align-items: center;
}
.blog-card-image {
    flex: 0 0 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fc;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}
.blog-card-content {
    flex: 1;
}
.blog-card-header {
    margin-bottom: 16px;
}
.blog-card-date {
    color: #8b8fa7;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #181c3a;
    margin: 0 0 12px 0;
    font-family: 'Ubuntu', Arial, sans-serif;
}
.blog-card-excerpt {
    color: #8b8fa7;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
}
.blog-card-link {
    color: #35ac39;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}
.blog-card-link i {
    margin-left: 6px;
    font-size: 0.9rem;
    transition: transform 0.2s;
}
.blog-card-link:hover {
    color: #2d8f30;
}
.blog-card-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 700px) {
    .blog-section {
        padding: 40px 0;
    }
    .blog-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    .blog-card {
        flex-direction: column;
        padding: 16px;
    }
    .blog-card-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    .blog-card-title {
        font-size: 1.2rem;
    }
    .blog-card-excerpt {
        font-size: 0.95rem;
    }
}

.contact-button {
    background-color: #25D366; /* WhatsApp yeşili */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #128C7E; /* WhatsApp koyu yeşili */
}

.contact-button i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .top-bar {
        height: auto;
        padding: 8px 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .top-bar .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    .top-bar-left, .top-bar-right {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .top-bar-left {
        justify-content: flex-start;
    }
    .top-bar-right {
        justify-content: flex-end;
        margin-left: 0;
        margin-top: 5px;
    }
    .top-bar-left span, .top-bar-right span,
    .top-bar-left i, .top-bar-right i {
        font-size: 13px;
    }
    .top-bar-left span:last-child,
    .top-bar-right a:last-child {
        margin-right: 0;
    }
    .top-bar-left .bar, .top-bar-right .bar {
        margin: 0 4px;
    }
    .top-bar-right a {
        margin: 0 2px;
    }
    .menu-btn {
        height: 32px;
        padding: 0 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .menu-btn i {
        font-size: 16px;
    }
} 