
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-orange: #f4a216;
    --dark-grey: #333;
    --light-grey: #666;
    --bg-border: #f4a216;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.page-container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.card {
    background-color: white;
    width: 100%;
    max-width: 1100px;
    border: 12px solid var(--primary-orange);
    border-radius: 10px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-orange);
}

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

nav a {
    text-decoration: none;
    color: var(--light-grey);
    font-size: 14px;
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-orange);
}

.main-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-section {
    flex: 1;
}

.text-section h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.orange-text {
    color: var(--primary-orange);
}

.description {
    color: var(--light-grey);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--dark-grey);
    font-size: 14px;
}

.contact-item i {
    color: var(--primary-orange);
    width: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    font-size: 14px;
}

.pagination {
    margin-top: 50px;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
}

.dot.active {
    background-color: var(--primary-orange);
}

.image-section {
    flex: 1;
    text-align: right;
}

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

@media (max-width: 850px) {
    .main-content {
        flex-direction: column;
        text-align: center;
    }
    header {
        flex-direction: column;
        gap: 20px;
    }
    .text-section h1 {
        font-size: 32px;
    }
    .image-section {
        order: -1;
    }
    .contact-item {
        justify-content: center;
    }
}
