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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #595554;
    background: linear-gradient(180deg, #f7f4ef 888px, #fff);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2);
    border-radius: 32px;
    margin-top: 35px;
    margin-bottom: 60px;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 1px solid #f7f4ef;
}

.logo {
    width: 110px;
    height: auto;
}

/* Main Content */
.main-content {
    padding: 40px 60px 60px;
}

@media (max-width: 768px) {
    .main-content {
        padding: 30px 20px 40px;
    }
}

/* Typography */
.main-title {
    font-size: 24px;
    font-weight: 400;
    color: #ff6a00;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: left;
}

h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 25px;
    margin-bottom: 14px;
}

.text-orange {
    color: #ff6a00;
}

p {
    font-size: 14px;
    color: #595554;
    letter-spacing: -0.3px;
    line-height: 1.4;
    margin-bottom: 14px;
    text-align: justify;
}

/* Section Spacing */
.section {
    margin-bottom: 30px;
}

.section:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: #00b67d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1360px) {
    .container {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .logo {
        width: 80px;
    }
}
