* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fb;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background-color: #0f172a;
    color: white;
    padding: 20px 0;
}

#main-header,
#about-header {
    border-bottom: 3px solid #2563eb;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

.navbar a:hover {
    color: #93c5fd;
}

.hero {
    background-color: #dbeafe;
    padding: 60px 0;
}

#hero-section {
    border-top: 2px solid #bfdbfe;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1d4ed8;
}

.hero p {
    margin-bottom: 20px;
    max-width: 700px;
}

.btn {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: bold;
}

.btn:hover {
    background-color: #1d4ed8;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-top: 20px;
}

.section {
    padding: 50px 0;
}

.section h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.section h3,
.section h4,
.section h5,
.section h6 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.section p {
    margin-bottom: 15px;
}

#about-section {
    background-color: #dbeafe;
    padding: 60px 0;
    border-top: 2px solid #bfdbfe;
}

.about-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-image {
    flex: 1;
    min-width: 280px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-top: 0;
}

.feature-list,
.ordered-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.feature-list li,
.ordered-list li {
    margin-bottom: 10px;
}

.paslaugos {
    margin-top: 30px;
}

.paslauga {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.paslauga h3 {
    margin-bottom: 10px;
    color: #1d4ed8;
}

#about-table {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
}

table th,
table td {
    border: 1px solid #cbd5e1;
    padding: 14px;
    text-align: left;
}

table th {
    background-color: #1e3a8a;
    color: white;
}

footer {
    background-color: #0f172a;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

#main-footer,
#about-footer {
    border-top: 3px solid #2563eb;
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-image img {
        max-width: 100%;
    }

    .navbar a {
        display: inline-block;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section h1 {
        font-size: 32px;
    }

    .section h2 {
        font-size: 26px;
    }
}
#contact-header {
    border-bottom: 3px solid #2563eb;
}

#contact-footer {
    border-top: 3px solid #2563eb;
}

#contact-section {
    background-color: #dbeafe;
    padding: 60px 0;
    border-top: 2px solid #bfdbfe;
}

.contact-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info,
.contact-form-box {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info h3,
.contact-form-box h3 {
    margin-bottom: 15px;
    color: #1d4ed8;
}

.contact-info p {
    margin-bottom: 10px;
}

#contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-row input {
    width: auto;
    margin-bottom: 0;
}

.checkbox-row label {
    margin-bottom: 0;
    font-weight: normal;
}