/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Arial", sans-serif;
    background-color: #222;
    color: white;
    line-height: 1.5;
}

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

/* Header */
.header {
    background-color: #f07c2d;
    padding: 15px 0;
    border-radius: 30px;
    margin: 20px auto 30px;
    max-width: 1200px;
}

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

.logo {
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}

.hero-logo {
    width: 560px;
    height: auto;
    filter: drop-shadow(2px 2px 2px #00000090);
}

.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 12px;
    margin-bottom: 25px;
    color: #dedede;
    max-width: 480px;
}

.btn-primary {
    display: inline-block;
    background-color: #f07c2d;
    color: white;
    padding: 12px 40px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e57020;
}

/* Experience Section */
.experience {
    background: linear-gradient(180deg, #ab6f27 0%, #562f0a 100%);
    border-radius: 30px;
    padding: 40px 30px 50px;
    margin-bottom: 70px;
    color: white;
    position: relative;
}

.experience h2 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.experience p {
    font-size: 12px;
    max-width: 680px;
    margin: 8px auto 10px;
    line-height: 1.4;
    text-align: center;
    color: #e6d5b6;
}

.experience-img {
    position: absolute;
    right: 30px;
    bottom: 10px;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.4));
    display: none;
}

/* Approach Section */
.approach {
    background-color: #222;
    padding-bottom: 60px;
    margin-bottom: 70px;
}

.approach h2 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.approach-intro {
    font-size: 11px;
    color: #ccc;
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.4;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.approach-item {
    background: #333;
    padding: 20px 15px 25px;
    border-radius: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.approach-item img {
    width: 120px;
    margin-bottom: 15px;
    user-select: none;
}

.approach-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.approach-item p {
    font-size: 12px;
    color: #ddd;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Competence Section */
.competence {
    background: linear-gradient(180deg, #ab6f27 0%, #562f0a 100%);
    border-radius: 30px;
    padding: 40px 30px 50px;
    margin-bottom: 70px;
    color: white;
}

.competence h2 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.competence-desc {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
    color: #e6d5b6;
}

.competence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.competence-item {
    background: #333;
    border-radius: 15px;
    padding: 15px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    user-select: none;
}

.competence-item img {
    width: 90px;
    margin-bottom: 15px;
}

.competence-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.competence-item p {
    font-size: 12px;
    color: #ddd;
    line-height: 1.3;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #ab6f27 0%, #562f0a 100%);
    border-radius: 30px;
    padding: 40px 30px 50px;
    margin-bottom: 70px;
    color: white;
    text-align: center;
}

.contact h2 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact p {
    font-size: 12px;
    margin-bottom: 30px;
    color: #e6d5b6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255 255 255 / 0.1);
    border: none;
    border-radius: 5px;
    padding: 12px 18px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    resize: none;
    transition: background-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ddd;
    font-weight: 600;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255 255 255 / 0.2);
}

.contact-form textarea {
    min-height: 100px;
}

.contact-form button {
    background-color: black;
    color: white;
    font-size: 22px;
    font-weight: 600;
    border-radius: 15px;
    padding: 14px 0;
    border: none;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #222;
}

/* Footer */
.footer {
    background-color: #f07c2d;
    border-radius: 30px;
    margin: 0 auto 20px;
    max-width: 1200px;
    padding: 12px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 11px;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.03em;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 960px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text p {
        max-width: 100%;
    }

    .experience-img {
        display: none !important;
    }

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

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

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin-bottom: 8px;
    }
}

@media (max-width: 600px) {
    .hero-logo {
        width: 100%;
    }
    .nav-links {
        display: none;
    }
    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .btn-primary {
        padding: 10px 30px;
        font-size: 13px;
    }

    .contact-form button {
        font-size: 18px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
    }
}
