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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

.container-magazine {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #c19b2a;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #333333;
}

.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #d4af37;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #333;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 60px 30px;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-main {
    flex: 2;
}

.intro-main h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.intro-main p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-sidebar {
    flex: 1;
}

.highlight-card {
    background-color: #f9f9f9;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.highlight-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.highlight-card h4 {
    font-size: 20px;
    margin: 20px 20px 10px;
}

.highlight-card p {
    font-size: 15px;
    margin: 0 20px 20px;
    color: #555;
}

.story-flow {
    padding: 80px 0;
    background-color: #fafafa;
}

.story-flow h3 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.story-flow img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.story-flow p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.9;
}

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-preview h3 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid-magazine {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.service-card-wide {
    display: flex;
    gap: 40px;
    background-color: #f9f9f9;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-wide .service-image {
    flex: 1.2;
    background-color: #e0e0e0;
}

.service-card-wide .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-wide .service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-wide h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-card-wide p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card-compact {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
}

.service-card-compact img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card-compact h4 {
    font-size: 22px;
    margin: 20px 20px 10px;
}

.service-card-compact p {
    font-size: 15px;
    margin: 0 20px 15px;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #d4af37;
    margin: 15px 20px;
}

.service-card-wide .price-tag {
    margin: 15px 0;
}

.btn-select-service {
    padding: 12px 30px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 10px 20px 20px;
}

.service-card-wide .btn-select-service {
    margin: 10px 0 0;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #d4af37;
    color: #2c2c2c;
}

.services-row-secondary {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.service-inline {
    flex: 1;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
}

.service-inline h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-inline p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-inline .price-tag {
    margin: 15px 0;
}

.service-inline .btn-select-service {
    margin: 10px 0 0;
}

.testimonials-inline {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonials-inline blockquote {
    font-size: 20px;
    font-style: italic;
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #ffffff;
    border-left: 4px solid #d4af37;
    line-height: 1.7;
}

.testimonials-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.form-section-editorial {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-section-editorial h3 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.form-section-editorial > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #d4af37;
    color: #2c2c2c;
}

.final-visual {
    padding: 0;
    background-color: #fafafa;
}

.split-visual {
    display: flex;
    min-height: 500px;
}

.visual-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c2c2c;
    color: #ffffff;
}

.visual-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.visual-text p {
    font-size: 18px;
    line-height: 1.8;
}

.visual-image {
    flex: 1;
    background-color: #e0e0e0;
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 20px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-disclaimer {
    background-color: #0d0d0d;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.6;
    color: #999;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.page-hero-small {
    padding: 80px 0 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-hero-small h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-hero-small p {
    font-size: 18px;
    color: #555;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-layout {
    display: flex;
    gap: 60px;
}

.about-main-text {
    flex: 2;
}

.about-main-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.about-main-text h3:first-child {
    margin-top: 0;
}

.about-main-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-main-text img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.about-sidebar-content {
    flex: 1;
}

.info-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.quote-card {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.quote-card blockquote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.team-section h3 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.team-grid {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.commitment-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.commitment-section h3 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.commitment-section p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-about {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-about h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #d4af37;
    color: #2c2c2c;
}

.btn-secondary {
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-block-full {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-block-alternate {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-visual {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-text h4 {
    font-size: 20px;
    margin: 25px 0 15px;
}

.service-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-text ul {
    margin: 15px 0 20px 20px;
}

.service-text ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.pricing-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.price-large {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

.pricing-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.services-secondary-row {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.service-card-secondary {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.service-card-secondary h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card-secondary h4 {
    font-size: 18px;
    margin: 20px 0 10px;
}

.service-card-secondary p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card-secondary ul {
    margin: 15px 0 20px 20px;
}

.service-card-secondary ul li {
    font-size: 15px;
    margin-bottom: 8px;
}

.service-special-mention {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 8px;
}

.service-special-mention h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-special-mention p {
    font-size: 18px;
    margin-bottom: 25px;
}

.why-choose-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.why-choose-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.why-choose-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #555;
}

.benefits-list {
    display: flex;
    gap: 40px;
}

.benefit-item {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-main {
    flex: 1;
}

.contact-info-main h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.location-note {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.location-note h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.location-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.faq-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.faq-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.visit-us-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.visit-us-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.visit-us-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.thanks-content {
    text-align: center;
    margin-bottom: 60px;
}

.thanks-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-confirmation p {
    font-size: 16px;
    margin: 0;
}

.next-steps {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.next-steps ul {
    list-style: none;
    margin-left: 0;
}

.next-steps ul li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.thanks-note {
    margin: 30px 0;
    padding: 20px;
    background-color: #fff9e6;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

.thanks-note p {
    font-size: 15px;
    margin: 0;
    color: #555;
}

.thanks-actions {
    margin-top: 40px;
}

.thanks-visual {
    margin-top: 40px;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.additional-info {
    padding: 60px 0;
    background-color: #fafafa;
}

.additional-info h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.info-grid {
    display: flex;
    gap: 40px;
}

.info-item {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.info-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content em {
    color: #666;
    font-size: 14px;
}

.legal-content a {
    color: #d4af37;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .intro-layout,
    .about-layout,
    .contact-layout,
    .service-block-full,
    .service-block-alternate {
        flex-direction: column;
    }

    .split-visual {
        flex-direction: column;
    }

    .footer-columns,
    .services-row-secondary,
    .team-grid,
    .benefits-list,
    .info-grid,
    .services-secondary-row {
        flex-direction: column;
    }

    .service-card-wide {
        flex-direction: column;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}